home *** CD-ROM | disk | FTP | other *** search
/ ShareWare OnLine 2 / ShareWare OnLine Volume 2 (CMS Software)(1993).iso / prog / inter35a.zip / INTERRUP.E < prev    next >
Text File  |  1993-06-05  |  253KB  |  6,770 lines

  1. Interrupt List, part 5 of 9
  2. This compilation is Copyright (c) 1989,1990,1991,1992,1993 Ralf Brown
  3. --------D-2180-------------------------------
  4. INT 21 - European MS-DOS 4.0 - "AEXEC" - EXECUTE PROGRAM IN BACKGROUND
  5.     AH = 80h
  6.     CX = mode
  7.         0000h place child in zombie mode on exit to preserve exit code
  8.         0001h discard child process and exit code on termination
  9.     DS:DX -> ASCIZ full program name
  10.     ES:BX -> parameter block (as for AX=4B00h)
  11. Return: CF clear if successful
  12.         AX = Command Subgroup ID (CSID)
  13.     CF set on error
  14.         AX = error code (see AH=59h)
  15. Program: European MS-DOS 4.0 was written for Siemens in Germany and then used
  16.       by several other European OEMs; its release falls between mainstream
  17.       versions 3.2 and 3.3
  18. Desc:    asynchronously execute a program, creating a new process for it
  19. Notes:    this function is called by the DETACH command
  20.     there is a system-wide limit of 32 processes
  21.     the CSID is used to identify all processes that have been spawned by
  22.       a given process, whether directly or indirectly
  23.     programs to be run in the background must use the new executable format
  24.       (see AH=4Bh)
  25.     background processes may only perform asynchronous (background) EXECs,
  26.       either this function or AX=4B04h
  27.     background processes may execute INT 11, INT 12, INT 21, INT 2A, and
  28.       INT 2F at any time; they may execute INT 10 and INT 16 only while
  29.       they have opened a popup screen via INT 2F/AX=1401h; no other
  30.       interrupts may be executed from the background
  31.     background processes may not use drive B: or overlay their code
  32.       segments
  33.     see AX=8700h for an installation check
  34.     the "NE" new executable format made its first appearance in European
  35.       MS-DOS 4.0
  36. SeeAlso: AH=4Bh,AH=87h,INT 2F/AX=1400h"POPUP"
  37. ----------218080-----------------------------
  38. INT 21 - PCW Weather Card interface - UNINSTALL PCW.COM AND FREE MEMORY
  39.     AX = 8080h
  40. Return: ???
  41. SeeAlso: AX=7070h/BX=7070h
  42. --------D-2181-------------------------------
  43. INT 21 - European MS-DOS 4.0 - "FREEZE" - STOP A PROCESS
  44.     AH = 81h
  45.     BX = flag (00h freeze command subtree, 01h only specified process)
  46.     CX = Process ID of head of command subtree
  47. Return: CF clear if successful
  48.     CF set on error
  49.         AX = error code (no such process)
  50. Desc:    temporarily suspend a process or a process and all of its children
  51. Note:    if BX=0001h, this call will not return until the process is actually
  52.       frozen, which may not be until after it unblocks from an I/O
  53.       operation
  54. SeeAlso: AH=82h,AH=89h,AX=8E00h,INT 15/AX=101Dh
  55. --------D-2182-------------------------------
  56. INT 21 - European MS-DOS 4.0 - "RESUME" - RESTART A PROCESS
  57.     AH = 82h
  58.     BX = flag (00h resume command subtree, 01h only specified process)
  59.     CX = Process ID of head of command subtree
  60. Return: CF clear if successful
  61.     CF set on error
  62.         AX = error code (no such process)
  63. Desc:    restart a previously-suspended process or a process and all of its
  64.       children
  65. SeeAlso: AX=81h,INT 15/AX=101Eh
  66. --------D-2183-------------------------------
  67. INT 21 - European MS-DOS 4.0 - "PARTITION" - GET/SET FOREGROUND PARTITION SIZE
  68.     AH = 83h
  69.     AL = function
  70.         00h get size
  71.         01h set new size
  72.         BX = new size in paragraphs
  73. Return: CF clear if successful
  74.         BX = current size (function 00h) or old size (function 01h)
  75.     CF set on error
  76.         AX = error code (01h,07h,0Dh)(see AH=59h)
  77. Desc:    specify or determine how much memory may be allocated by the foreground
  78.       process
  79. Note:    if the partition size is set to 0000h, no partition management is done
  80.       and all memory allocation is compatible with DOS 3.2.
  81.     the partition size can be changed regardless of what use is being made
  82.       of the changed memory; subsequent allocations will follow the
  83.       partition rules (foreground processes may allocate only foreground
  84.       memory; background processes allocate background memory first, then
  85.       foreground memory)
  86. SeeAlso: AH=48h,AH=4Ah
  87. --------v-2183-------------------------------
  88. INT 21 - VIRUS - "SVC" - INSTALLATION CHECK
  89.     AH = 83h
  90. Return: DX = 1990h if resident
  91. SeeAlso: AH=76h,AH=84h"VIRUS"
  92. --------v-2184-------------------------------
  93. INT 21 - VIRUS - "SVC 5.0" or "SVC 6.0" - INSTALLATION CHECK
  94.     AH = 84h
  95. Return: DX = 1990h if resident
  96.         BH = version number (major in high nybble, minor in low)
  97. SeeAlso: AH=83h"VIRUS",AH=89h"VIRUS"
  98. --------D-218400-----------------------------
  99. INT 21 - European MS-DOS 4.0 - "CREATMEM" - CREATE A SHARED MEMORY AREA
  100.     AX = 8400h
  101.     BX = size in bytes (0000h = 65536)
  102.     CX = flags
  103.         bit 6: zero-initialize segment
  104.     DS:DX -> ASCIZ name (must begin with "\SHAREMEM\")
  105. Return: CF clear if successful
  106.         AX = segment address of shared memory global object
  107.     CF set on error
  108.         AX = error code (06h,08h) (see AH=59h)
  109. Desc:    create an area of memory which may be accessed by multiple processes
  110. Notes:    shared memory objects are created as special files (thus the
  111.       restriction on the name)
  112.     on successful creation, the reference count is set to 1
  113. SeeAlso: AX=8401h,AX=8402h,INT 15/AX=DE19h
  114. --------D-218401-----------------------------
  115. INT 21 - European MS-DOS 4.0 - "GETMEM" - OBTAIN ACCESS TO SHARED MEMORY AREA
  116.     AX = 8401h
  117.     CX = flags
  118.         bit 7: writable segment (ignored by MS-DOS 4.0)
  119.     DS:DX -> ASCIZ name (must begin with "\SHAREMEM\")
  120. Return: CF clear if successful
  121.         AX = segment address of shared memory global object
  122.         CX = size in bytes
  123.     CF set on error
  124.         AX = error code (invalid name)
  125. Desc:    get address of a previously-created area of memory which may be
  126.       accessed by multiple processes    
  127. Note:    this call increments the reference count for the shared memory area
  128. SeeAlso: AX=8400h,AX=8402h
  129. --------D-218402-----------------------------
  130. INT 21 - European MS-DOS 4.0 - "RELEASEMEM" - FREE SHARED MEMORY AREA
  131.     AX = 8402h
  132.     BX = handle (segment address of shared memory object)
  133. Return: CF clear if successful
  134.     CF set on error
  135.         AX = error code (no such name)
  136. Desc:    indicate that the specified area of shared memory will no longer be
  137.       used by the caller
  138. Note:    the reference count is decremented and the shared memory area is
  139.       deallocated if the new reference count is zero
  140. SeeAlso: AX=8400h,AX=8401h,INT 15/AX=DE19h
  141. --------D-2185-------------------------------
  142. INT 21 U - European MS-DOS 4.0 - ???
  143.     AH = 85h
  144.     ???
  145. Return: ???
  146. --------D-2186-------------------------------
  147. INT 21 - European MS-DOS 4.0 - "SETFILETABLE" - INSTALL NEW FILE HANDLE TABLE
  148.     AH = 86h
  149.     BX = total number of file handles in new table
  150. Return: CF clear if successful
  151.     CF set on error
  152.         AX = error code (06h,08h) (see AH=59h)
  153. Desc:    adjust the size of the per-process open file table, thus raising or
  154.       lowering the limit on the number of files the caller can open
  155.       simultaneously
  156. Notes:    any currently-open files are copied to the new table
  157.     if the table is increased beyond the default 20 handles, only the
  158.       first 20 will be inherited by child processes
  159.     error 06h is returned if the requested number of handles exceeds
  160.       system limits or would require closing currently-open files
  161. SeeAlso: AH=26h,AH=67h
  162. --------D-2187-------------------------------
  163. INT 21 - European MS-DOS 4.0 - "GETPID" - GET PROCESS IDENTIFIER
  164.     AH = 87h
  165. Return: AX = PID
  166.     BX = parent process's PID
  167.     CX = Command Subgroup ID (CSID)
  168. Program: European MS-DOS 4.0 was written for Siemens in Germany and then used
  169.       by several other European OEMs; its release falls between mainstream
  170.       versions 3.2 and 3.3
  171. Desc:    determine an identifier by which to access the calling process
  172. Notes:    called by MS C v5.1 getpid() function
  173.     this function apparently must return AX=0001h for INT 21/AH=80h to
  174.       succeed
  175.     one possible check for European MS-DOS 4.0 is to issue this call with
  176.       AL=00h and check whether AL is nonzero on return
  177. SeeAlso: AH=30h,AH=62h,AH=80h
  178. Index:    installation check;European MS-DOS 4.0
  179. --------D-2188-------------------------------
  180. INT 21 U - European MS-DOS 4.0 - ???
  181.     AH = 88h
  182.     ???
  183. Return: ???
  184. SeeAlso: AH=87h
  185. --------D-2189-------------------------------
  186. INT 21 - European MS-DOS 4.0 - SLEEP
  187.     AH = 89h
  188.     CX = time in milliseconds or 0000h to give up time slice
  189. Return: CF clear if successful
  190.         CX = 0000h
  191.     CF set on error
  192.         AX = error code (interrupted system call)
  193.         CX = sleep time remaining
  194. Desc:    suspend the calling process for the specified duration
  195. Notes:    the sleep interval is rounded up to the next higher increment of the
  196.       scheduler clock, and may be extended further if other processes are
  197.       running
  198.     this call may be interrupted by signals (see AH=8Dh)
  199.     reportedly called by Microsoft C 4.0 startup code
  200.     background processes have higher priority than the foreground process,
  201.       and should thus periodically yield the CPU
  202. SeeAlso: AH=81h,INT 15/AX=1000h,INT 2F/AX=1680h,INT 7A/BX=000Ah
  203. --------v-2189-------------------------------
  204. INT 21 - VIRUS - "Vriest" - INSTALLATION CHECK
  205.     AH = 89h
  206. Return: AX = 0123h if resident
  207. SeeAlso: AH=84h"VIRUS",AH=90h"VIRUS"
  208. --------D-218A-------------------------------
  209. INT 21 - European MS-DOS 4.0 - "CWAIT" - WAIT FOR CHILD TO TERMINATE
  210.     AH = 8Ah
  211.     BL = range (00h command subtree, 01h any child)
  212.     BH = suspend flag
  213.         00h suspend if children exist but none are dead
  214.         01h return if no dead children
  215.     CX = Process ID of head of command subtree
  216. Return: CF clear if successful
  217.         AH = termination type
  218.         00h normal termination
  219.         01h aborted by Control-C
  220.         02h aborted by I/O error
  221.         03h terminate and stay resident
  222.         04h aborted by signal
  223.         05h aborted by program error
  224.         AL = return code from child or aborting signal
  225.         BX = PID of child (0000h if no dead children)
  226.     CF set on error
  227.         AX = error code (no child,interrupted system call)
  228. Desc:    get return code from an asynchronously-executed child program,
  229.       optionally waiting if no return code is available
  230. SeeAlso: AH=4Bh,AH=4Dh,AH=80h,AH=8Dh
  231. --------D-218B-------------------------------
  232. INT 21 U - European MS-DOS 4.0 - ???
  233.     AH = 8Bh
  234.     ???
  235. Return: ???
  236. SeeAlso: AH=87h
  237. --------D-218C-------------------------------
  238. INT 21 - European MS-DOS 4.0 - SET SIGNAL HANDLER
  239.     AH = 8Ch
  240.     AL = signal number (see below)
  241.     BL = action (see below)
  242.     DS:DX -> signal handler
  243. Return: CF clear if successful
  244.         AL = previous action
  245.         ES:BX -> previous signal handler
  246.     CF set on error
  247.         AX = error code (01h,invalid SigNumber or Action) (see AH=59h)
  248. Desc:    set the routine which will be invoked on a number of exceptional
  249.       conditions
  250. Note:    all signals will be sent to the most recently installed handler
  251. SeeAlso: AH=8Dh
  252.  
  253. Values for signal number:
  254.  01h    SIGINTR        Control-C or user defined interrupt key
  255.  08h    SIGTERM        program termination
  256.  09h    SIGPIPE        broken pipe
  257.  0Dh    SIGUSER1    reserved for user definition
  258.  0Eh    SIGUSER2    reserved for user definition
  259.  
  260. Values for signal action:
  261.  00h    SIG_DFL        terminate process on receipt
  262.  01h    SIG_IGN        ignore signal
  263.  02h    SIG_GET        signal is accepted
  264.  03h    SIG_ERR        sender gets error
  265.  04h    SIG_ACK        acknowledge received signal and clear it, but don't
  266.             change current setting
  267.  
  268. Signal handler is called with:
  269.     AL = signal number
  270.     AH = signal argument
  271. Return: RETF, CF set: terminate process
  272.     RETF, CF clear, ZF set: abort any interrupted system call with an error
  273.     RETF, CF clear, ZF clear: restart any interrupted system call
  274.     IRET: restart any interrupted system call
  275. Note:    the signal handler may also perform a nonlocal GOTO by resetting the
  276.       stack pointer and jumping; before doing so, it should dismiss the
  277.       signal by calling this function with BL=04h
  278. --------D-218D-------------------------------
  279. INT 21 - European MS-DOS 4.0 - SEND SIGNAL
  280.     AH = 8Dh
  281.     AL = signal number (see AH=8Ch)
  282.     BH = signal argument
  283.     BL = action
  284.         00h send to entire command subtree
  285.         01h send only to specified process
  286.     DX = Process ID
  287. Return: CF clear if successful
  288.     CF set on error
  289.         AX = error code (01h,06h)(see AH=59h)
  290. Desc:    invoke the exceptional-condition handler for the specified process
  291. Note:    error 06h may be returned if one or more of the affected processes
  292.       have an error handler for the signal
  293. SeeAlso: AH=8Ch
  294. --------D-218E00BH00-------------------------
  295. INT 21 - European MS-DOS 4.0 - "SETPRI" - GET/SET PROCESS PRIORITY
  296.     AX = 8E00h
  297.     BH = 00h
  298.     BL = action
  299.         00h set priority for command subtree
  300.         01h set priority for specified process only
  301.     CX = Process ID
  302.     DH = 00h
  303.     DL = change in priority (00h to get priority)
  304. Return: CF clear if successful
  305.         DL = process priority
  306.         DH destroyed
  307.     CF set on error
  308.         AX = error code (01h,no such process)(see AH=59h)
  309. Desc:    specify or determine the execution priority of the specified process
  310.       or the process and all of its children
  311. SeeAlso: AH=81h
  312. --------D-218F-------------------------------
  313. INT 21 U - European MS-DOS 4.0 - ???
  314.     AH = 8Fh
  315.     ???
  316. Return: ???
  317. SeeAlso: AH=87h
  318. --------D-2190-------------------------------
  319. INT 21 U - European MS-DOS 4.0 - ???
  320.     AH = 90h
  321.     ???
  322. Return: ???
  323. SeeAlso: AH=87h
  324. --------v-2190-------------------------------
  325. INT 21 - VIRUS - "Carioca" - INSTALLATION CHECK
  326.     AH = 90h
  327. Return: AH = 01h if resident
  328. SeeAlso: AH=89h"VIRUS",AX=9753h"VIRUS"
  329. --------D-2191-------------------------------
  330. INT 21 U - European MS-DOS 4.0 - ???
  331.     AH = 91h
  332.     ???
  333. Return: ???
  334. SeeAlso: AH=87h
  335. --------D-2192-------------------------------
  336. INT 21 U - European MS-DOS 4.0 - ???
  337.     AH = 92h
  338.     ???
  339. Return: ???
  340. SeeAlso: AH=87h
  341. --------D-2193-------------------------------
  342. INT 21 - European MS-DOS 4.0 - "PIPE" - CREATE A NEW PIPE
  343.     AH = 93h
  344.     CX = size in bytes
  345. Return: CF clear if successful
  346.         AX = read handle
  347.         BX = write handle
  348.     CF set on error
  349.         AX = error code (08h) (see AH=59h)
  350. Desc:    create a communications channel which may be used for interprocess
  351.       data and command exchanges
  352. SeeAlso: AH=3Ch,AH=3Fh,AH=40h,AH=84h
  353. --------D-2194-------------------------------
  354. INT 21 U - European MS-DOS 4.0 - ???
  355.     AH = 94h
  356.     ???
  357. Return: ???
  358. SeeAlso: AH=87h
  359. --------D-2195-------------------------------
  360. INT 21 - European MS-DOS 4.0 - HARD ERROR PROCESSING
  361.     AH = 95h
  362.     AL = new state
  363.        00h enabled
  364.        01h disabled, automatically fail hard errors
  365. Return: AX = previous setting
  366. Desc:    specify whether hard (critical) errors should automatically fail the
  367.       system call or invoke an INT 24
  368. SeeAlso: INT 24
  369. --------D-2196-------------------------------
  370. INT 21 U - European MS-DOS 4.0 - ???
  371.     AH = 96h
  372.     ???
  373. Return: ???
  374. --------D-2197-------------------------------
  375. INT 21 U - European MS-DOS 4.0 - ???
  376.     AH = 97h
  377.     ???
  378. Return: ???
  379. --------v-219753-----------------------------
  380. INT 21 - VIRUS - "Nina" - INSTALLATION CHECK
  381.     AX = 9753h
  382. Return: never (executes original program) if virus resident
  383. SeeAlso: AH=90h"VIRUS",AX=A1D5h"VIRUS"
  384. --------D-2198-------------------------------
  385. INT 21 U - European MS-DOS 4.0 - ???
  386.     AH = 98h
  387.     ???
  388. Return: ???
  389. --------D-2199-------------------------------
  390. INT 21 u - European MS-DOS 4.0 - "PBLOCK" - BLOCK A PROCESS
  391.     AH = 99h
  392.     DS:BX -> memory location to block on
  393.     CX = timeout in milliseconds
  394.     DH = nonzero if interruptible
  395. Return: CF clear if awakened by event
  396.         AX = 0000h
  397.     CF set if unusual wakeup
  398.         ZF set if timeout, clear if interrupted by signal
  399.         AX = nonzero
  400. Desc:    suspend calling process until another process sends a "restart" signal
  401.       or a timeout occurs
  402. SeeAlso: AH=9Ah,INT 2F/AX=0802h
  403. --------D-219A-------------------------------
  404. INT 21 u - European MS-DOS 4.0 - "PRUN" - UNBLOCK A PROCESS
  405.     AH = 9Ah
  406.     DS:BX -> memory location processes may have blocked on
  407. Return: AX = number of processes awakened
  408.     ZF set if no processes awakened
  409. Program: European MS-DOS 4.0 was written for Siemens in Germany and then used
  410.       by several other European OEMs; its release falls between mainstream
  411.       versions 3.2 and 3.3
  412. Desc:    restart all processes waiting for the specified "restart" signal
  413. SeeAlso: AH=99h,INT 2F/AX=0802h
  414. --------I-21A0-------------------------------
  415. INT 21 - Attachmate Extra - GET 3270 DISPLAY STATE
  416.     AH = A0h
  417. Return: AL = display status
  418.         bit     7  : 0=windowed, 1=enlarged
  419.         bits 6-3: current screen profile number 0-9
  420.         bits 2-0: active window number
  421.             0=PC, 1-4=host B-E, 5-6=notepad F-G
  422.     BX = host window status (see below)
  423. Program: Attachmate Extra is a 3270 emulator by Attachmate Corporation
  424. SeeAlso: AH=A1h
  425.  
  426. Bitfields for host window status:
  427.  bit 15    reserved
  428.  bit 14 0=host E window installed, 1=not
  429.  bit 13 0=host E terminal on, 1=off
  430.  bit 12 0=host E window displayed, 1=not
  431.  bit 11 reserved
  432.  bit 10 0=host D window installed, 1=not
  433.  bit 9    0=host D terminal on, 1=off
  434.  bit 8    0=host D window displayed, 1=not
  435.  bit 7    reserved
  436.  bit 6    0=host C window installed, 1=not
  437.  bit 5    0=host C terminal on, 1=off
  438.  bit 4    0=host C window displayed, 1=not
  439.  bit 3    reserved
  440.  bit 2    0=host B window installed, 1=not
  441.  bit 1    0=host B terminal on, 1=off
  442.  bit 0    0=host B window displayed, 1=not
  443. --------I-21A1-------------------------------
  444. INT 21 - Attachmate Extra - SET 3270 DISPLAY STATE
  445.     AH = A1h
  446.     AL = set status byte
  447.         bit     7  : 0=windowed, 1=enlarged
  448.         bits 6-3: current screen profile number 0-9
  449.         bits 2-0: active window number
  450.             0=PC, 1-4=host B-E, 5-6=notepad F-G
  451. SeeAlso: AH=A0h,AH=A2h
  452. --------v-21A1D5-----------------------------
  453. INT 21 - VIRUS - "789"/"Filehider" - INSTALLATION CHECK
  454.     AX = A1D5h
  455. Return: AX = 900Dh if resident
  456. SeeAlso: AX=9753h,AX=A55Ah
  457. --------I-21A2-------------------------------
  458. INT 21 - Attachmate Extra - SET HOST WINDOW STATE
  459.     AH = A2h
  460.     AL = set status byte
  461.         bit     7  : 0=power off, 1=power on
  462.         bit     6  : 0=not installed, 1=installed
  463.         bits 5-3: reserved
  464.         bits 2-0: window number 1-4=host B-E
  465. SeeAlso: AH=A1h
  466. --------I-21A3-------------------------------
  467. INT 21 - Attachmate Extra - SEND KEYSTROKES TO HOST WINDOW
  468.     AH = A3h
  469.     AL = window number (1-4=host B-E)
  470.     CX = 0001h
  471.     DS:BX -> keystroke buffer
  472.     DL = zero if keystroke buffer contains host function code,
  473.          non-zero if keystroke buffer contains ASCII character
  474. Return: CX = zero if character sent, non-zero if not
  475.     BX incremented if CX=0
  476.  
  477. Values for host function code:
  478.     00h=reserved    10h=PF16    20h=Clear    30h=SysRq
  479.     01h=PF1        11h=PF17    21h=Print    31h=ErInp
  480.     02h=PF2        12h=PF18    22h=Left    32h=ErEof
  481.     03h=PF3        13h=PF19    23h=Right    33h=Ident
  482.     04h=PF4        14h=PF20    24h=Up        34h=Test
  483.     05h=PF5        15h=PF21    25h=Down    35h=Reset
  484.     06h=PF6        16h=PF22    26h=Home    36h=DevCncl
  485.     07h=PF7        17h=PF23    27h=Fast Left    37h=Dup
  486.     08h=PF8        18h=PF24    28h=Fast Right    38h=FldMark
  487.     09h=PF9        19h=Alt on    29h=Bksp    39h=Enter
  488.     0Ah=PF10    1Ah=Alt off    2Ah=Insert    3Ah=CrSel
  489.     0Bh=PF11    1Bh=Shift on    2Bh=Delete
  490.     0Ch=PF12    1Ch=Shift off    2Ch=Backtab
  491.     0Dh=PF13    1Dh=PA1        2Dh=Tab
  492.     0Eh=PF14    1Eh=PA2        2Eh=Newline
  493.     0Fh=PF15    1Fh=PA3        2Fh=Attn
  494. --------I-21A4-------------------------------
  495. INT 21 - Attachmate Extra - GET HOST WINDOW BUFFER ADDRESS
  496.     AH = A4h
  497.     AL = window number (1-4=host B-E)
  498. Return: DS:BX -> 3270 display buffer
  499. SeeAlso: AH=A5h,AH=B8h
  500. --------I-21A5-------------------------------
  501. INT 21 - Attachmate Extra - GET HOST WINDOW CURSOR POSITION
  502.     AH = A5h
  503.     AL = window number (1-4=host B-E)
  504. Return: BX = cursor position (80 * row + column, where 0:0 is upper left)
  505. Note:    if the host window is configured with the Extended Attribute (EAB)
  506.       feature, multiply the cursor position by 2 to obtain the byte offset
  507.       into the display buffer
  508. SeeAlso: AH=A4h
  509. --------v-21A55A-----------------------------
  510. INT 21 - VIRUS - "Eddie-2" - INSTALLATION CHECK
  511.     AX = A55Ah
  512. Return: AX = 5AA5h if resident
  513. SeeAlso: AX=A1D5h,AX=AA00h
  514. --------v-21AA00-----------------------------
  515. INT 21 - VIRUS - "Blinker" - INSTALLATION CHECK
  516.     AX = AA00h
  517. Return: AX = 00AAh if resident
  518. SeeAlso: AX=A55Ah,AX=AA03h
  519. --------v-21AA03-----------------------------
  520. INT 21 - VIRUS - "Backtime" - INSTALLATION CHECK
  521.     AX = AA03h
  522. Return: AX = 03AAh if resident
  523. SeeAlso: AX=AA00h,AH=ABh
  524. --------v-21AB-------------------------------
  525. INT 21 - VIRUS - "600" or "Voronezh"-family - INSTALLATION CHECK
  526.     AH = ABh
  527. Return: AX = 5555h if resident
  528. SeeAlso: AX=AA03h,AX=BBBBh"VIRUS"
  529. --------I-21AF-------------------------------
  530. INT 21 - Attachmate Extra - GET TRANSLATE TABLE ADDRESS
  531.     AH = AFh
  532. Return: DS:BX -> translate tables (see below)
  533.  
  534. Format of translate tables:
  535. Offset    Size    Description
  536.  00h 256 BYTEs    ASCII to 3270 buffer code translate table
  537. 100h 256 BYTEs    3270 buffer code to ASCII translate table
  538. 200h 256 BYTEs    3270 buffer code to EBCDIC translate table
  539. 300h 256 BYTEs    EBCDIC to 3270 buffer code translate table
  540. --------N-21B4-------------------------------
  541. INT 21 U - Novell Netware - "AttachHandle" 
  542.     AH = B4h
  543.     DS:SI -> input buffer (see below)
  544. Return: AX = handle or return code
  545. Note:    this is an interface provided by NetWare to give DOS file access to
  546.       NetWare files on non-DOS systems such as Macintosh, OS/2, and Unix
  547.  
  548. Format of input buffer:
  549. Offset    Size    Description
  550.  00h    BYTE    "WorkFileServer"
  551.  01h    BYTE    access code
  552.  02h    DWORD    "OpenHandle"
  553.  06h    WORD    "OpenHandleCount"
  554.  08h    DWORD    "OpenFileSize"
  555. --------N-21B500-----------------------------
  556. INT 21 U - Novell NetWare - VNETWARE.386 API - GET INSTANCE DATA
  557.     AX = B500h
  558. Return: ES:BX -> data
  559.     CX = length
  560. SeeAlso: AX=B501h,AX=B502h
  561. --------N-21B501-----------------------------
  562. INT 21 U - Novell NetWare - VNETWARE.386 API - END VIRTUAL MACHINE
  563.     AX = B501h
  564. SeeAlso: AX=B500h,AX=B502h
  565. --------N-21B502-----------------------------
  566. INT 21 U - Novell NetWare - VNETWARE.386 API - START VIRTUAL MACHINE
  567.     AX = B502h
  568. SeeAlso: AX=B500h,AX=B501h
  569. --------N-21B5-------------------------------
  570. INT 21 - Novell NetWare shell 3.01 - TASK MODE CONTROL
  571.     AH = B5h
  572.     AL = subfunction
  573.         03h get task mode
  574.         Return: AH = 00h
  575.             AL = current task mode byte
  576.         04h get task mode pointer
  577.         Return: ES:BX -> task mode byte
  578. Notes:    the task mode byte specifies how task cleanup should be performed, but
  579.       is declared to be version-dependent
  580.     allows a program to disable the automatic cleanup for programs managing
  581.       task swapping, etc.
  582.  
  583. Values for task mode byte in version 3.01:
  584.  00h-03h reserved
  585.  04h     no task cleanup
  586. --------N-21B505-----------------------------
  587. INT 21 U - Novell NetWare - VNETWARE.386 API - SET VIRTUAL MACHINE ID
  588.     AX = B505h
  589.     ???
  590. Return: ???
  591. SeeAlso: AX=B502h,AX=B506h
  592. --------N-21B506-----------------------------
  593. INT 21 U - Novell NetWare - VNETWARE.386 API - GET VIRTUAL MACH SUPPORT LEVEL
  594.     AX = B506h
  595. Return: AX = ??? (0002h)
  596. SeeAlso: AX=B505h
  597. --------N-21B6-------------------------------
  598. INT 21 - Novell NetWare - FILE SERVICES - EXTENDED FILE ATTRIBUTES
  599.     AH = B6h
  600.     AL = subfunction
  601.         00h get extended file attributes
  602.         01h set extended file attributes
  603.         CL = extended file attributes (see below)
  604.     DS:DX -> ASCIZ pathname (max 255 bytes)
  605. Return: CF set on error
  606.         AL = error code
  607.         8Ch caller lacks privileges
  608.         FEh not permitted to search directory
  609.         FFh file not found
  610.     CF clear if successful
  611.         AL = 00h (success)
  612.         CL = current extended file attributes (see below)
  613. Note:    this function is supported by Advanced NetWare 2.1+
  614. SeeAlso: AX=4300h,AH=E3h/SF=0Fh
  615.  
  616. Bitfields for extended file attributes:
  617.  bits 2-0  search mode (executables only)
  618.     000 none (use shell's default search)
  619.     001 search on all opens without path
  620.     010 do not search
  621.     011 search on read-only opens without path
  622.     100 reserved
  623.     101 search on all opens
  624.     110 reserved
  625.     111 search on all read-only opens
  626.  bit 3    reserved
  627.  bit 4    transactions on file tracked
  628.  bit 5    file's FAT indexed
  629.  bit 6    read audit (to be implemented)
  630.  bit 7    write audit (to be implemented)
  631. --------N-21B7-------------------------------
  632. INT 21 U - Novell NetWare - "HoldFileModeSet" (obsolete)
  633.     AH = B7h
  634.     AL = new value for HoldFileFlag
  635. Return: AL = previous value of HoldFileFlag
  636. Note:    this function provided backward compatibility with a bug in early
  637.       DOS versions and CP/M, but is no longer used or supported
  638. --------I-21B8-------------------------------
  639. INT 21 - Attachmate Extra - DISABLE HOST BUFFER UPDATES
  640.     AH = B8h
  641.     AL = window number (1-4=host B-E)
  642.     DL = 01h
  643. Notes:    only valid in CUT mode
  644.     next AID keystroke (eg Enter) enables host buffer updates
  645. SeeAlso: AH=A4h
  646. --------N-21B800-----------------------------
  647. INT 21 - Novell NetWare - PRINT SERVICES - GET DEFAULT CAPTURE FLAGS
  648.     AX = B800h
  649.     CX = size of reply buffer (01h-3Fh)
  650.     ES:BX -> reply buffer for capture flags table (see below)
  651. Return: AL = status
  652.         00h successful
  653. Note:    this function is supported by Advanced NetWare 2.0+
  654. SeeAlso: AX=B801h,AX=B802h,AH=DFh/DL=00h,AH=DFh/DL=04h
  655.  
  656. Format of capture flags table:
  657. Offset    Size    Description
  658.  00h    BYTE    status (used internally, should be set to 00h)
  659.  01h    BYTE    print flags
  660.         bit 2: print capture file if interrupted by loss of connection
  661.         bit 3: no automatic form feed after print job
  662.         bit 6: printing control sequences interpreted by print service
  663.         bit 7: print banner page before capture file
  664.  02h    BYTE    tab size (01h-12h, default 08h)
  665.  03h    BYTE    printer number on server (00h-04h, default 00h)
  666.  04h    BYTE    number of copies to print (00h-FFh, default 01h)
  667.  05h    BYTE    form type required in printer (default 00h)
  668.  06h    BYTE    reserved
  669.  07h 13 BYTEs    text to be placed on banner page
  670.  14h    BYTE    reserved
  671.  15h    BYTE    default local printer (00h = LPT1)
  672.  16h    WORD    (big-endian) timeout in clock ticks for flushing capture file
  673.          on inactivity, or 0000h to disable timeout
  674.  18h    BYTE    flush capture file on LPT close if nonzero
  675.  19h    WORD    (big-endian) maximum lines per page
  676.  1Bh    WORD    (big-endian) maximum characters per line
  677.  1Dh 13 BYTEs    name of form required in printer
  678.  2Ah    BYTE    LPT capture flag
  679.         00h inactive, FFh LPT device is being captured
  680.  2Bh    BYTE    file capture flag
  681.         00h if no file specified, FFh if capturing to file
  682.  2Ch    BYTE    timing out (00h if no timeout in effect, FFh if timeout counter
  683.         running)
  684.  2Dh    DWORD    (big-endian) address of printer setup string
  685.  31h    DWORD    (big-endian) address of printer reset string
  686.  35h    BYTE    target connection ID
  687.  36h    BYTE    capture in progress if FFh
  688.  37h    BYTE    job queued for printing if FFh
  689.  38h    BYTE    print job valid if FFh
  690.  39h    DWORD    bindery object ID of print queue if previous byte FFh
  691.  3Dh    WORD    (big-endian) print job number (1-999)
  692. --------N-21B801-----------------------------
  693. INT 21 - Novell NetWare - PRINT SERVICES - SET DEFAULT CAPTURE FLAGS
  694.     AX = B801h
  695.     CX = size of buffer (01h-3Fh)
  696.     ES:BX -> buffer containing capture flags table (see below)
  697. Return: AL = status
  698.         00h successful
  699. Note:    this function is supported by Advanced NetWare 2.0+
  700. SeeAlso: AX=B800h,AX=B803h,AH=DFh/DL=00h,AH=DFh/DL=04h
  701. --------N-21B802-----------------------------
  702. INT 21 - Novell NetWare - PRINT SERVICES - GET SPECIFIC CAPTURE FLAGS
  703.     AX = B802h
  704.     CX = size of reply buffer (01h-3Fh)
  705.     DH = LPT port (00h-02h)
  706.     ES:BX -> reply buffer for capture flags table (see AX=B800h)
  707. Return: AL = status
  708.         00h successful
  709. Note:    this function is supported by Advanced NetWare 2.1+
  710. SeeAlso: AX=B800h,AX=B803h,AH=DFh/DL=00h,AH=DFh/DL=04h
  711. --------N-21B803-----------------------------
  712. INT 21 - Novell NetWare - PRINT SERVICES - SET SPECIFIC CAPTURE FLAGS
  713.     AX = B803h
  714.     CX = size of buffer (01h-3Fh)
  715.     DH = LPT port (00h-02h)
  716.     ES:BX -> buffer containing capture flags table (see below)
  717. Return: AL = status
  718.         00h successful
  719. Note:    this function is supported by Advanced NetWare 2.1+
  720. SeeAlso: AX=B800h,AX=B803h,AH=DFh/DL=00h,AH=DFh/DL=04h
  721. --------N-21B804-----------------------------
  722. INT 21 - Novell NetWare - PRINT SERVICES - GET DEFAULT LOCAL PRINTER
  723.     AX = B804h
  724. Return: DH = default LPT port (00h-02h)
  725. Note:    this function is supported by Advanced NetWare 2.1+
  726. SeeAlso: AX=B800h,AX=B805h,AH=DFh/DL=00h
  727. --------N-21B805-----------------------------
  728. INT 21 - Novell NetWare - PRINT SERVICES - SET DEFAULT LOCAL PRINTER
  729.     AX = B805h
  730.     DH = new default LPT port (00h-02h)
  731. Return: AL = status
  732.         00h successful
  733. Note:    this function is supported by Advanced NetWare 2.1+
  734. SeeAlso: AX=B800h,AX=B804h,AH=DFh/DL=00h
  735. --------N-21B806-----------------------------
  736. INT 21 - Novell NetWare - PRINT SERVICES - SET CAPTURE PRINT QUEUE
  737.     AX = B806h
  738.     DH = LPT port (00h-02h)
  739.     BX:CX = print queue's object ID
  740. Return: AL = status
  741.         00h successful
  742.         FFh job already set
  743. Desc:    specify the print queue on which a print job is to be placed the next
  744.       time a capture is started on the given printer port
  745. Note:    this function is supported by Advanced NetWare 2.1+
  746. SeeAlso: AX=B801h,AX=B807h,AX=E009h
  747. --------N-21B807-----------------------------
  748. INT 21 - Novell NetWare - PRINT SERVICES - SET CAPTURE PRINT JOB
  749.     AX = B807h
  750.     DH = LPT port (00h-02h)
  751.     BX = job number (see AH=E3h/SF=68h)
  752.     SI:DI:CX = NetWare file handle (see AH=E3h/SF=68h)
  753. Return: AL = status
  754.         00h successful
  755.         FFh job already queued
  756. Desc:    specify the capture file and print job to be used for subsequent
  757.       output to the given printer port
  758. Note:    this function is supported by Advanced NetWare 2.1+
  759. SeeAlso: AX=B801h,AX=B806h,AX=E009h,AH=E3h/SF=68h
  760. --------N-21B808-----------------------------
  761. INT 21 - Novell NetWare - PRINT SERVICES - GET BANNER USER NAME
  762.     AX = B808h
  763.     ES:BX -> 12-byte buffer for user name
  764. Return: AL = status
  765.         00h successful
  766. Desc:    get the user name which is printed on the banner page
  767. Notes:    this function is supported by Advanced NetWare 2.1+
  768.     the default name is the login name of the user
  769. SeeAlso: AX=B809h
  770. --------N-21B809-----------------------------
  771. INT 21 - Novell NetWare - PRINT SERVICES - SET BANNER USER NAME
  772.     AX = B809h
  773.     ES:BX -> 12-byte buffer containing user name
  774. Return: AL = status
  775.         00h successful
  776. Desc:    specify the user name which is printed on the banner page
  777. Notes:    this function is supported by Advanced NetWare 2.1+
  778.     the default name is the login name of the user
  779. SeeAlso: AX=B808h
  780. --------N-21B9-------------------------------
  781. INT 21 U - Novell NetWare - "SpecialAttachableFunction"
  782.     AH = B9h
  783.     AL = FFh to hook this function
  784.         ES:BX -> function to invoke on AH=B9h when AL<>FFh
  785. Note:    this function is no longer used or supported by current versions of
  786.       NetWare
  787. --------N-21BA-------------------------------
  788. INT 21 U - Novell NetWare - "ReturnCommandComPointers"
  789.     AH = BAh
  790. Return: DX = environment segment
  791.     ES:DI -> COMMAND.COM drive
  792. Desc:    used to edit the COMSPEC and PATH variables in the master environment
  793.       when mapping network drives
  794. Note:    this function was documented in older Novell documents which are no
  795.       longer available
  796. --------N-21BB-------------------------------
  797. INT 21 - Novell NetWare - WORKSTATION - SET END OF JOB STATUS
  798.     AH = BBh
  799.     AL = new EOJ flag
  800.         00h disable EOJs
  801.         01h enable EOJs
  802. Return: AL = old EOJ flag
  803. Desc:    specify whether the network shell should automatically generate an
  804.       End of Job call when the root command processor regains control
  805. Note:    this function is supported by NetWare 4.0+, Advanced NetWare 1.0+, and
  806.       Alloy NTNX
  807. SeeAlso: AH=19h,AH=D6h
  808. --------v-21BBBB-----------------------------
  809. INT 21 - VIRUS - "Hey You" - INSTALLATION CHECK
  810.     AX = BBBBh
  811. Return: AX = 6969h
  812. SeeAlso: AH=ABh"VIRUS",AH=BEh"VIRUS"
  813. --------N-21BC-------------------------------
  814. INT 21 - Novell NetWare - SYNCHRONIZATION SERVICES - LOG PHYSICAL RECORD
  815.     AH = BCh
  816.     AL = flags
  817.         bit 0: lock as well as log record
  818.         bit 1: non-exclusive lock
  819.     BX = file handle
  820.     CX:DX = starting offset in file
  821.     SI:DI = length of region to lock
  822.     BP = timeout in timer ticks (1/18 sec)
  823.         0000h = don't wait if already locked
  824. Return: AL = status
  825.         00h successful
  826.         96h no dynamic memory for file
  827.         FEh timed out
  828.         FFh failed
  829. Desc:    add the specified physical record to the log table, optionally locking
  830.       it
  831. Note:    this function is supported by NetWare 4.6+, Advanced NetWare 1.0+, and
  832.       Alloy NTNX
  833. SeeAlso: AH=5Ch,AH=BDh,AH=BEh,AH=BFh,AH=C2h,AH=D0h
  834. --------N-21BD-------------------------------
  835. INT 21 - Novell NetWare - SYNCHRONIZATION SERVICES - RELEASE PHYSICAL RECORD
  836.     AH = BDh
  837.     BX = file handle
  838.     CX:DX = starting offset in file
  839.     SI:DI = length of record
  840. Return: AL = status
  841.         00h successful
  842.         FFh record not locked
  843. Desc:    unlock the specified physical record but do not remove it from log
  844.       table
  845. Note:    this function is supported by NetWare 4.6+, Advanced NetWare 1.0+, and
  846.       Alloy NTNX
  847. SeeAlso: AH=BCh,AH=BEh"NetWare",AH=C0h,AH=C3h,AH=D2h
  848. --------N-21BE-------------------------------
  849. INT 21 - Novell NetWare - SYNCHRONIZATION SERVICES - CLEAR PHYSICAL RECORD
  850.     AH = BEh
  851.     BX = file handle
  852.     CX:DX = starting offset within file
  853.     SI:DI = record length in bytes
  854. Return: AL = status
  855.         00h successful
  856.         FFh specified record not locked
  857. Desc:    unlock the physical record and remove it from the log table
  858. Note:    this function is supported by NetWare 4.6+, Advanced NetWare 1.0+, and
  859.       Alloy NTNX
  860. SeeAlso: AH=5Ch,AH=BCh,AH=BDh,AH=C1h,AH=C4h,AH=D4h
  861. --------v-21BE-------------------------------
  862. INT 21 - VIRUS - "Datalock" - INSTALLATION CHECK
  863.     AH = BEh
  864. Return: AX = 1234h if resident
  865. SeeAlso: AX=BBBBh,AX=BE00h
  866. --------v-21BE00-----------------------------
  867. INT 21 - VIRUS - "USSR-1049" - INSTALLATION CHECK
  868.     AX = BE00h
  869.     CF set
  870. Return: CF clear if resident
  871. SeeAlso: AH=BEh"VIRUS",AH=C0h"VIRUS"
  872. --------N-21BF-------------------------------
  873. INT 21 O - Novell NetWare, Alloy NTNX - LOG/LOCK RECORD (FCB)
  874.     AH = BFh
  875.     AL = flags
  876.         bit 0: lock as well as log record
  877.         bit 1: non-exclusive lock
  878.     DS:DX -> opened FCB (see AH=0Fh)
  879.     BX:CX = offset
  880.     BP = lock timeout in timer ticks (1/18 sec) if AL nonzero
  881.     SI:DI = length
  882. Return: AL = error code (see AH=BCh)
  883. Note:    this function was added in NetWare 4.6, but was removed some time prior
  884.       to Advanced NetWare 2.15, and is no longer listed in current Novell
  885.       documentation
  886. SeeAlso: AH=BCh,AH=C0h"NetWare",AH=C2h"NetWare"
  887. --------N-21C0-------------------------------
  888. INT 21 O - Novell NetWare, Alloy NTNX - RELEASE RECORD (FCB)
  889.     AH = C0h
  890.     DS:DX -> non-extended FCB (see AH=0Fh)
  891.     BX:CX = offset
  892. Return: AL = error code (see AH=BCh)
  893. Notes:    unlocks record but does not remove it from log table
  894.     this function was added in NetWare 4.6, but was removed some time prior
  895.       to Advanced NetWare 2.15, and is no longer listed in current Novell
  896.       documentation
  897. SeeAlso: AH=BDh,AH=BFh,AH=C1h"NetWare",AH=C3h
  898. --------v-21C0-------------------------------
  899. INT 21 - VIRUS - "Slow"/"Zerotime", "Solano" - INSTALLATION CHECK
  900.     AH = C0h
  901. Return: AX = 0300h if "Slow"/"Zerotime" resident
  902.     AX = 1234h if "Solano" resident
  903. SeeAlso: AX=BE00h,AH=C1h"VIRUS",AX=C301h"VIRUS"
  904. --------N-21C1-------------------------------
  905. INT 21 O - Novell NetWare, Alloy NTNX - CLEAR RECORD (FCB)
  906.     AH = C1h
  907.     DS:DX -> opened FCB (see AH=0Fh)
  908.     BX:CX = offset
  909. Return: AL = error code (see AH=BCh)
  910. Note:    unlocks record and removes it from log table
  911.     this function was added in NetWare 4.6, but was removed some time prior
  912.       to Advanced NetWare, and is no longer listed in current Novell
  913.       documentation
  914. SeeAlso: AH=BEh,AH=C0h"NetWare",AH=C4h
  915. --------v-21C1-------------------------------
  916. INT 21 - VIRUS - "Solano" - ???
  917.     AH = C1h
  918.     ???
  919. Return: ???
  920. SeeAlso: AH=C0h"VIRUS"
  921. --------N-21C2-------------------------------
  922. INT 21 - Novell NetWare - SYNCHRONIZATION SERVICES - LOCK PHYSICAL RECORD SET
  923.     AH = C2h
  924.     AL = flags
  925.         bit 1: non-exclusive lock
  926.     BP = lock timeout in timer ticks (1/18 sec) 0000h = no wait
  927. Return: AL = status
  928.         00h successful
  929.         FEh timed out
  930.         FFh failed
  931. Desc:    attempt to lock all physical records listed in the log table
  932. Notes:    this function is supported by NetWare 4.6+, Advanced NetWare 1.0+, and
  933.       Alloy NTNX
  934.     status FFh will be retuend if one or more physical records have been
  935.       exclusively locked by another process
  936. SeeAlso: AH=BFh,AH=C3h,AH=D1h
  937. --------v-21C2-------------------------------
  938. INT 21 - VIRUS - "Scott's Valley" - ???
  939.     AH = C2h
  940.     ???
  941. Return: ???
  942. SeeAlso: AH=C0h"VIRUS"
  943. --------N-21C3-------------------------------
  944. INT 21 - Novell NetWare - SYNCHRONIZATION SERVICES - RELEASE PHYSICAL RECRD SET
  945.     AH = C3h
  946. Desc:    unlock all currently-locked physical records in the log table, but do
  947.       not remove them from the table
  948. Note:    this function is supported by NetWare 4.6+, Advanced NetWare 1.0+, and
  949.       Alloy NTNX
  950. SeeAlso: AH=BDh,AH=C0h,AH=C2h"NetWare",AH=C4h,AH=D3h
  951. --------v-21C301DXF1F1-----------------------
  952. INT 21 - VIRUS - "905"/"Backfont" - INSTALLATION CHECK
  953.     AX = C301h
  954.     DX = F1F1h
  955. Return: DX = 0E0Eh if resident
  956. SeeAlso: AH=C0h"VIRUS",AX=C500h"VIRUS"
  957. --------N-21C4-------------------------------
  958. INT 21 - Novell NetWare - SYNCHRONIZATION SERVICES - CLEAR PHYSICAL RECORD SET
  959.     AH = C4h
  960. Desc:    unlock all physical records in the log table and remove them from the
  961.       log table
  962. Note:    this function is supported by NetWare 4.6+, Advanced NetWare 1.0+, and
  963.       Alloy NTNX
  964. SeeAlso: AH=BEh,AH=C1h,AH=D5h
  965. --------N-21C500-----------------------------
  966. INT 21 - Novell NetWare - SYNCHRONIZATION SERVICES - OPEN SEMAPHORE
  967.     AX = C500h
  968.     DS:DX -> semaphore name (counted string, max 127 bytes)
  969.     CL = initial value for semaphore
  970. Return: AL = status
  971.         00h successful
  972.         BL = number of processes having semaphore open
  973.         CX:DX = semaphore handle
  974.         FEh invalid name length
  975.         FFh invalid semaphore value
  976. Notes:    this function is supported by NetWare 4.6+, Advanced NetWare 1.0+, and
  977.       Alloy NTNX
  978.     the semaphore's value is incremented by AX=C503h and decremented by
  979.       AX=C502h
  980. SeeAlso: AX=C501h,AX=C502h,AX=C503h,AX=C504h
  981. --------v-21C500-----------------------------
  982. INT 21 - VIRUS - "Sverdlov" - INSTALLATION CHECK
  983.     AX = C500h
  984. Return: AX = 6731h if resident
  985. SeeAlso: AX=C301h"VIRUS",AH=C6h"VIRUS"
  986. --------N-21C501-----------------------------
  987. INT 21 - Novell NetWare - SYNCHRONIZATION SERVICES - EXAMINE SEMAPHORE
  988.     AX = C501h
  989.     CX:DX = semaphore handle
  990. Return: AL = status
  991.         00h successful
  992.         CX = semaphore value (-127 to 127)
  993.         DL = count of processes which have the semaphore open
  994.         FFh invalid handle
  995. Note:    this function is supported by NetWare 4.6+, Advanced NetWare 1.0+, and
  996.       Alloy NTNX
  997. SeeAlso: AX=C500h"NetWare",AX=C502h,AX=C504h
  998. --------N-21C502-----------------------------
  999. INT 21 - Novell NetWare - SYNCHRONIZATION SERVICES - WAIT ON SEMAPHORE
  1000.     AX = C502h
  1001.     CX:DX = semaphore handle
  1002.     BP = timeout limit in timer ticks (1/18 sec)
  1003.         0000h return immediately if semaphore already zero or negative
  1004. Return: AL = status
  1005.         00h successful
  1006.         FEh timeout
  1007.         FFh invalid handle
  1008. Desc:    decrement the semaphore's value, optionally waiting until its value
  1009.       becomes positive before decrementing
  1010. Note:    this function is supported by NetWare 4.6+, Advanced NetWare 1.0+, and
  1011.       Alloy NTNX
  1012. SeeAlso: AX=C500h"NetWare",AX=C501h,AX=C503h
  1013. --------N-21C503-----------------------------
  1014. INT 21 - Novell NetWare - SYNCHRONIZATION SERVICES - SIGNAL SEMAPHORE
  1015.     AX = C503h
  1016.     CX:DX = semaphore handle
  1017. Return: AL = status
  1018.         00h successful
  1019.         01h semaphore value overflowed
  1020.         FFh invalid handle
  1021. Desc:    increment the semaphore's value and signal the first process (if any)
  1022.       in the queue waiting on the semaphore
  1023. Note:    this function is supported by NetWare 4.6+, Advanced NetWare 1.0+, and
  1024.       Alloy NTNX
  1025. SeeAlso: AX=C500h"NetWare",AX=C502h
  1026. --------N-21C504-----------------------------
  1027. INT 21 - Novell NetWare - SYNCHRONIZATION SERVICES - CLOSE SEMAPHORE
  1028.     AX = C504h
  1029.     CX:DX = semaphore handle
  1030. Return: AL = status
  1031.         00h successful
  1032.         FFh invalid handle
  1033. Desc:    decrement the semaphore's open count, and delete the semaphore if the
  1034.       count reaches zero
  1035. Note:    this function is supported by NetWare 4.6+, Advanced NetWare 1.0+, and
  1036.       Alloy NTNX
  1037. SeeAlso: AX=C500h"NetWare",AX=C501h
  1038. --------N-21C6-------------------------------
  1039. INT 21 - Novell NetWare - SYNCHRONIZATION SERVICES - GET OR SET LOCK MODE
  1040.     AH = C6h
  1041.     AL = subfunction
  1042.         00h set old "compatibility" mode (default)
  1043.         01h set new extended locks mode 
  1044.         02h get lock mode
  1045. Return: AL = current lock mode
  1046. Note:    this function is supported by NetWare 4.6+, Advanced NetWare 1.0+, and
  1047.       Alloy NTNX
  1048.     the locking mode should be 01h for NetWare 4.61+ and Advanced
  1049.       NetWare 1.0+ locking calls, and 00h for all older calls
  1050. SeeAlso: AH=BCh,AH=C4h,AH=D0h
  1051. --------v-21C6-------------------------------
  1052. INT 21 - VIRUS - "Socha" - INSTALLATION CHECK
  1053.     AH = C6h
  1054. Return: AL = 55h if resident
  1055. SeeAlso: AX=C500h"VIRUS",AX=C603h
  1056. --------v-21C603-----------------------------
  1057. INT 21 - VIRUS - "Yankee" or "MLTI" - INSTALLATION CHECK
  1058.     AX = C603h
  1059.     CF set
  1060. Return: CF clear if resident
  1061. SeeAlso: AX=C500h"VIRUS",AX=C700h"VIRUS"
  1062. --------N-21C700-----------------------------
  1063. INT 21 - Novell NetWare - TRANSACTION TRACKING SYSTEM - BEGIN TRANSACTION
  1064.     AX = C700h
  1065. Return: CF clear if successful
  1066.         AL = 00h
  1067.     CF set on error
  1068.         AL = error code
  1069.         96h out of memory
  1070.         FEh implicit transaction already active, converted to explicit
  1071.         FFh explicit transaction already active
  1072. Note:    this function is supported by NetWare 4.0+ and Advanced NetWare 1.0+
  1073. SeeAlso: AX=C701h,AX=C702h,AX=C703h
  1074. --------v-21C700-----------------------------
  1075. INT 21 - VIRUS - "MH-757" - INSTALLATION CHECK
  1076.     AX = C700h
  1077. Return: AL = 07h if resident
  1078. SeeAlso: AX=C603h"VIRUS",AH=CBh"VIRUS"
  1079. --------N-21C701-----------------------------
  1080. INT 21 - Novell NetWare - TRANSACTION TRACKING SYSTEM - END TRANSACTION
  1081.     AX = C701h
  1082. Return: AL = status
  1083.         00h successful
  1084.         CX:DX = transaction number
  1085.         FDh transaction tracking disabled
  1086.         FEh transaction ended records locked
  1087.         FFh no explicit transaction active
  1088.     CF clear except when AL=FFh
  1089. Note:    this function is supported by NetWare 4.0+ and Advanced NetWare 1.0+
  1090. SeeAlso: AX=C700h"NetWare",AX=C703h
  1091. --------N-21C702-----------------------------
  1092. INT 21 - Novell NetWare - TRANSACTION TRACKING SYSTEM - INSTALLATION CHECK
  1093.     AX = C702h
  1094. Return: AL = status
  1095.         00h not available
  1096.         01h available
  1097.         FDh available but disabled
  1098. Desc:    determine whether the default file server supports TTS
  1099. Note:    this function is supported by NetWare 4.0+ and Advanced NetWare 1.0+
  1100. --------N-21C703-----------------------------
  1101. INT 21 - Novell NetWare - TRANSACTION TRACKING SYSTEM - ABORT TRANSACTION
  1102.     AX = C703h
  1103. Return: CF clear if successful
  1104.         AL = 00h
  1105.     CF set on error
  1106.         AL = error code
  1107.         FDh transaction tracking disabled, no backout
  1108.         FEh transaction ended records locked
  1109.         FFh no explicit transaction active
  1110. Note:    this function is supported by NetWare 4.0+ and Advanced NetWare 1.0+
  1111. SeeAlso: AX=C700h"NetWare",AX=C701h,AX=C704h
  1112. --------N-21C704-----------------------------
  1113. INT 21 - Novell NetWare - TRANSACTION TRACKING SYSTEM - TRANSACTION STATUS
  1114.     AX = C704h
  1115.     CX:DX = transaction number (see AX=C701h)
  1116. Return: AL = status
  1117.         00h successful
  1118.         FFh not yet written to disk
  1119. Desc:    verify that a transaction has actually been written to disk
  1120. Notes:    this function is supported by NetWare 4.0+ and Advanced NetWare 1.0+
  1121.     transactions are written to disk in the order in which they are ended,
  1122.       but it may take as much as five seconds for the data to be written
  1123. SeeAlso: AX=C700h"NetWare",AX=C701h,AX=C703h
  1124. --------N-21C705-----------------------------
  1125. INT 21 - Novell NetWare - TRANSACTION TRACKING SYSTEM - GET APPLICTN THRESHOLDS
  1126.     AX = C705h
  1127. Return: AL = status
  1128.         00h successful
  1129.     CL = maximum logical record locks (default 0)
  1130.     CH = maximum physical record locks (default 0)
  1131. Desc:    get the per-application limits on record locks allowed before an
  1132.       implicit transaction is begun
  1133. Notes:    this function is supported by NetWare 4.0+ and Advanced NetWare 1.0+
  1134.     if either limit is FFh, implicit transactions are disabled for the
  1135.       corresponding lock type
  1136. SeeAlso: AX=C706h,AX=C707h
  1137. --------N-21C706-----------------------------
  1138. INT 21 - Novell NetWare - TRANSACTION TRACKING SYSTEM - SET APPLICTN THRESHOLDS
  1139.     AX = C706h
  1140.     CL = maximum logical record locks (default 0)
  1141.     CH = maximum physical record locks (default 0)
  1142. Return: AL = status
  1143.         00h successful
  1144. Desc:    specify the per-application limits on record locks allowed before an
  1145.       implicit transaction is begun
  1146. Notes:    this function is supported by NetWare 4.0+ and Advanced NetWare 1.0+
  1147.     if either limit is set to FFh, implicit transactions are disabled for
  1148.       the corresponding lock type
  1149. SeeAlso: AX=C705h,AX=C708h
  1150. --------N-21C707-----------------------------
  1151. INT 21 - Novell NetWare - TRANSACTION TRACKING SYSTEM - GET WORKSTN THRESHOLDS
  1152.     AX = C707h
  1153. Return: AL = status
  1154.         00h successful
  1155.     CL = maximum logical record locks (default 0)
  1156.     CH = maximum physical record locks (default 0)
  1157. Desc:    get the per-workstation limits on record locks allowed before an
  1158.       implicit transaction is begun
  1159. Notes:    this function is supported by NetWare 4.0+ and Advanced NetWare 1.0+
  1160.     if either limit is FFh, implicit transactions are disabled for the
  1161.       corresponding lock type
  1162. SeeAlso: AX=C705h,AX=C708h
  1163. --------N-21C708-----------------------------
  1164. INT 21 - Novell NetWare - TRANSACTION TRACKING SYSTEM - SET WORKSTN THRESHOLDS
  1165.     AX = C708h
  1166.     CL = maximum logical record locks (default 0)
  1167.     CH = maximum physical record locks (default 0)
  1168. Return: AL = status
  1169.         00h successful
  1170. Desc:    specify the per-workstation limits on record locks allowed before an
  1171.       implicit transaction is begun
  1172. Notes:    this function is supported by NetWare 4.0+ and Advanced NetWare 1.0+
  1173.     if either limit is set to FFh, implicit transactions are disabled for
  1174.       the corresponding lock type
  1175. SeeAlso: AX=C706h,AX=C707h
  1176. --------N-21C8-------------------------------
  1177. INT 21 O - Novell NetWare - BEGIN LOGICAL FILE LOCKING
  1178.     AH = C8h
  1179.     if function C6h lock mode 00h:
  1180.         DL = mode
  1181.         00h no wait
  1182.         01h wait
  1183.     if function C6h lock mode 01h:
  1184.         BP = timeout in timer ticks (1/18 sec)
  1185. Return: AL = error code
  1186. Desc:    used to provide TTS support for applications which are not aware of
  1187.       Novell's Transaction Tracking System
  1188. Note:    this function was added in NetWare 4.0, but was removed some time prior
  1189.       to Advanced NetWare 2.15, and is no longer listed in current Novell
  1190.       documentation
  1191. SeeAlso: AH=C9h
  1192. --------N-21C9-------------------------------
  1193. INT 21 O - Novell NetWare - END LOGICAL FILE LOCKING
  1194.     AH = C9h
  1195. Return: AL = error code
  1196. Desc:    used to provide TTS support for applications which are not aware of
  1197.       Novell's Transaction Tracking System
  1198. Note:    this function was added in NetWare 4.0, but was removed some time prior
  1199.       to Advanced NetWare 2.15, and is no longer listed in current Novell
  1200.       documentation
  1201. SeeAlso: AH=C8h
  1202. --------N-21CA-------------------------------
  1203. INT 21 O - Novell NetWare, Alloy NTNX - LOG/LOCK PERSONAL FILE (FCB)
  1204.     AH = CAh
  1205.     DS:DX -> FCB (see AH=0Fh)
  1206.     if function C6h lock mode 01h:
  1207.         AL = log and lock flag
  1208.         00h log file only
  1209.         01h lock as well as log file
  1210.         BP = lock timeout in timer ticks (1/18 sec)
  1211. Return: AL = error code
  1212.         00h successful
  1213.         96h no dynamic memory for file
  1214.         FEh timeout
  1215.         FFh failed
  1216. Desc:    provides file locking support for FCBs
  1217. Note:    this function was added in NetWare 4.0, but was removed some time prior
  1218.       to Advanced NetWare 2.15, and is no longer listed in current Novell
  1219.       documentation
  1220. SeeAlso: AH=CBh
  1221. --------v-21CA15-----------------------------
  1222. INT 21 - VIRUS - "Piter" - ???
  1223.     AX = CA15h
  1224.     ???
  1225. Return: ???
  1226. SeeAlso: AH=CCh"VIRUS"
  1227. --------N-21CB-------------------------------
  1228. INT 21 - Novell NetWare - SYNCHRONIZATION SERVICES - LOCK FILE SET
  1229.     AH = CBh
  1230.     if function C6h lock mode 00h:
  1231.         DL = mode
  1232.         00h no wait
  1233.         01h wait
  1234.     if function C6h lock mode 01h:
  1235.         BP = lock timeout in timer ticks (1/18 sec) 0000h = no wait
  1236. Return: AL = status
  1237.         00h successful
  1238.         FEh timed out
  1239.         FFh failed
  1240. Desc:    attempt to lock all files listed in the log table
  1241. Notes:    this function is supported by NetWare 4.0+, Advanced NetWare 1.0+, and
  1242.       Alloy NTNX
  1243.     status FFh will be returned if one or more of the files have already
  1244.       been exclusively locked by another process
  1245. SeeAlso: AH=CAh,AH=CDh,AH=D1h,AH=EBh
  1246. --------v-21CB-------------------------------
  1247. INT 21 - VIRUS - "Milous" - INSTALLATION CHECK
  1248.     AH = CBh
  1249. Return: AL = 07h if resident
  1250. SeeAlso: AX=C700h"VIRUS",AX=CB02h
  1251. --------v-21CB02-----------------------------
  1252. INT 21 - VIRUS - "Witcode" - INSTALLATION CHECK
  1253.     AX = CB02h
  1254. Return: AX = 02CBh if resident
  1255. SeeAlso: AH=CBh"VIRUS",AH=CCh"VIRUS"
  1256. --------N-21CC-------------------------------
  1257. INT 21 O - Novell NetWare, Alloy NTNX - RELEASE FILE (FCB)
  1258.     AH = CCh
  1259.     DS:DX -> FCB (see AH=0Fh)
  1260. Return: none
  1261. Desc:    unlocks file, but does not remove it from the log table or close it
  1262. Note:    this function was added in NetWare 4.0, but was removed some time prior
  1263.       to Advanced NetWare 2.15, and is no longer listed in current Novell
  1264.       documentation
  1265. SeeAlso: AH=CAh,AH=CDh
  1266. --------v-21CC-------------------------------
  1267. INT 21 - VIRUS - "Westwood" - INSTALLATION CHECK
  1268.     AH = CCh
  1269. Return: AX = 0700h if resident
  1270. SeeAlso: AX=CB02h,AH=CDh"VIRUS",AX=D000h"VIRUS"
  1271. --------N-21CD-------------------------------
  1272. INT 21 - Novell NetWare - SYNCHRONIZATION SERVICES - RELEASE FILE SET
  1273.     AH = CDh
  1274. Return: none
  1275. Desc:    unlock all files listed in the log table, but don't remove them from
  1276.       the table
  1277. Note:    this function is supported by NetWare 4.0+, Advanced NetWare 1.0+, and
  1278.       Alloy NTNX
  1279. SeeAlso: AH=CBh,AH=CCh,AH=CFh,AH=D3h
  1280. --------v-21CD-------------------------------
  1281. INT 21 - VIRUS - "Westwood" - ???
  1282.     AH = CDh
  1283.     ???
  1284. Return: ???
  1285. SeeAlso: AH=CCh"VIRUS"
  1286. --------N-21CE-------------------------------
  1287. INT 21 O - Novell NetWare, Alloy NTNX - CLEAR FILE (FCB)
  1288.     AH = CEh
  1289.     DS:DX -> FCB (see AH=0Fh)
  1290. Return: AL = error code
  1291. Desc:    unlocks file and removes it from log table, then closes all opened and
  1292.       logged occurrences
  1293. Note:    this function was added in NetWare 4.0, but was removed some time prior
  1294.       to Advanced NetWare 2.15, and is no longer listed in current Novell
  1295.       documentation
  1296. SeeAlso: AH=CAh,AH=CFh,AH=EDh"NetWare"
  1297. --------N-21CF-------------------------------
  1298. INT 21 - LANstep - ???
  1299.     AH = CFh
  1300.     ???
  1301. Return: ???
  1302. Program: LANstep is a redesign of the Waterloo Microsystems PORT network
  1303. --------N-21CF-------------------------------
  1304. INT 21 - Novell NetWare - SYNCHRONIZATION SERVICES - CLEAR FILE SET
  1305.     AH = CFh
  1306. Return: AL = 00h
  1307. Desc:    unlock and remove all files from log table
  1308. Note:    this function is supported by NetWare 4.0+, Advanced NetWare 1.0+, and
  1309.       Alloy NTNX
  1310. SeeAlso: AH=CAh,AH=CEh,AH=EBh"NetWare"
  1311. --------N-21D0-------------------------------
  1312. INT 21 - Novell NetWare - SYNCHRONIZATION SERVICES - LOG LOGICAL RECORD
  1313.     AH = D0h
  1314.     DS:DX -> record string (counted string, max 99 data bytes)
  1315.     if function C6h lock mode 01h: (Novell, NTNX only)
  1316.         AL = flags
  1317.         bit 0: lock as well as log the record
  1318.         bit 1: non-exclusive lock
  1319.         BP = lock timeout in timer ticks (1/18 sec)
  1320. Return: AL = status
  1321.         00h successful
  1322.         96h no dynamic memory for file
  1323.         FEh timed out
  1324.         FFh unsuccessful
  1325. Desc:    add the specified logical record name to the log table, and optionally
  1326.       lock the record
  1327. Notes:    this function is supported by NetWare 4.6+, Advanced NetWare 1.0+,
  1328.       Banyan VINES, and Alloy NTNX
  1329.     locks on logical record names are advisory and may be ignored by other
  1330.       applications
  1331. SeeAlso: AH=BCh,AH=D1h,AH=D2h,AH=D4h,AH=EBh
  1332. --------v-21D000-----------------------------
  1333. INT 21 - VIRUS - "Fellowship" - INSTALLATION CHECK
  1334.     AX = D000h
  1335. Return: BX = 1234h if resident
  1336. SeeAlso: AH=CCh"VIRUS",AH=D5h"VIRUS",AX=D5AAh
  1337. --------N-21D1-------------------------------
  1338. INT 21 - Novell NetWare - SYNCHRONIZATION SERVICES - LOCK LOGICAL RECORD SET
  1339.     AH = D1h
  1340.     AL = lock type (00h exclusive, 01h shareable)
  1341.     if function C6h lock mode 00h:
  1342.         DL = mode
  1343.         00h no wait
  1344.         01h wait
  1345.     if function C6h lock mode 01h: (Novell only)
  1346.        BP = lock timeout in timer ticks (1/18 sec) 0000h = no wait
  1347.         0000h no wait
  1348. Return: AL = status (see AH=CBh)
  1349. Desc:    attempt to lock all logical record names listed in the log table
  1350. Notes:    this function is supported by NetWare 4.6+, Advanced Netware 1.0+,
  1351.       Banyan VINES, and Alloy NTNX
  1352.     status FFh will be returned if one or more logical records have been
  1353.       exclusively locked by another process
  1354.     locks on logical record names are advisory and may be ignored by other
  1355.       applications
  1356. SeeAlso: AH=C2h,AH=CBh,AH=D0h,AH=D3h,AH=D5h
  1357. --------N-21D2-------------------------------
  1358. INT 21 - Novell NetWare - SYNCHRONIZATION SERVICES - RELEASE LOGICAL RECORD
  1359.     AH = D2h
  1360.     DS:DX -> semaphore identifier (counted string up to 99 chars long)
  1361. Return: AL = status
  1362.         00h successful
  1363.         FFh no such record
  1364. Desc:    unlock the logical record name but do not remove it from the log table
  1365. Notes:    this function is supported by NetWare 4.0+, Advanced NetWare 1.0+,
  1366.       Banyan VINES, and Alloy NTNX
  1367.     locks on logical record names are advisory and may be ignored by other
  1368.       applications
  1369. SeeAlso: AH=BDh,AH=D0h,AH=D3h,AH=D4h
  1370. --------N-21D3-------------------------------
  1371. INT 21 - Novell NetWare - SYNCHRONIZATION SERVICES - RELEASE LOGICAL RECORD SET
  1372.     AH = D3h
  1373. Desc:    unlock all currently-locked logical record names in the log table, but
  1374.       do not remove them from the table
  1375. Notes:    this function is supported by NetWare 4.0+, Advanced NetWare 1.0+,
  1376.       Banyan VINES, and Alloy NTNX
  1377.     locks on logical record names are advisory and may be ignored by other
  1378.       applications
  1379. SeeAlso: AH=C3h,AH=CDh,AH=D1h,AH=D2h,AH=D5h
  1380. --------N-21D4-------------------------------
  1381. INT 21 - Novell NetWare - SYNCHRONIZATION SERVICES - CLEAR LOGICAL RECORD
  1382.     AH = D4h
  1383.     DS:DX -> logical record name (counted string up to 99 chars long)
  1384. Return: AL = status
  1385.         00h successful
  1386.         FFh no such record name
  1387. Desc:    unlock and remove the logical record name from the log table
  1388. Notes:    this function is supported by NetWare 4.0+, Advanced NetWare 1.0+,
  1389.       Banyan VINES, and Alloy NTNX
  1390.     locks on logical record names are advisory and may be ignored by other
  1391.       applications
  1392. SeeAlso: AH=BEh,AH=D0h,AH=D2h,AH=D5h
  1393. --------N-21D5-------------------------------
  1394. INT 21 - Novell NetWare - SYNCHRONIZATION SERVICES - CLEAR LOGICAL RECORD SET
  1395.     AH = D5h
  1396. Return: AL = error code (see AH=D4h)
  1397. Desc:    unlock and remove all logical record name from the log table
  1398. Notes:    this function is supported by NetWare 4.0+, Advanced NetWare 1.0+,
  1399.       Banyan VINES, and Alloy NTNX
  1400.     locks on logical record names are advisory and may be ignored by other
  1401.       applications
  1402. SeeAlso: AH=D1h,AH=D3h,AH=D4h
  1403. --------v-21D5-------------------------------
  1404. INT 21 - VIRUS - "Carfield" - ???
  1405.     AH = D5h
  1406.     ???
  1407. Return: ???
  1408. SeeAlso: AX=D5AAh,AH=F3h"Carfield"
  1409. --------v-21D5AA-----------------------------
  1410. INT 21 - VIRUS - "Diamond-A", "Diamond-B" - INSTALLATION CHECK
  1411.     AX = D5AAh
  1412. Return: AX = 2A55h if "Diamond-A" resident
  1413.     AX = 2A03h if "Diamond-B"-family virus resident
  1414. SeeAlso: AX=D000h,AH=D5h"VIRUS",AX=D5AAh/BP=DEAAh
  1415. --------v-21D5AABPDEAA-----------------------
  1416. INT 21 - VIRUS - "Dir" - INSTALLATION CHECK
  1417.     AX = D5AAh
  1418.     BP = DEAAh
  1419. Return: SI = 4321h if resident
  1420. SeeAlso: AX=D5AAh,AX=DADAh"VIRUS"
  1421. --------N-21D6-------------------------------
  1422. INT 21 - Novell NetWare - WORKSTATION - END OF JOB
  1423.     AH = D6h
  1424.     BX = job flag (0000h current job, FFFFh all processes on workstation)
  1425. Return: AL = error code
  1426. Desc:    unlocks and clears all locked or logged files and records held by the
  1427.       process(es), closes all files, resets error and lock modes, and
  1428.       releases all network resources
  1429. Note:    this function is supported by NetWare 4.0+, Advanced NetWare 1.0+, and
  1430.       Alloy NTNX
  1431. SeeAlso: AH=BBh,AH=D7h
  1432. --------N-21D7-------------------------------
  1433. INT 21 - Novell NetWare - CONNECTION SERVICES - SYSTEM LOGOUT
  1434.     AH = D7h
  1435. Return: AL = error code
  1436. Desc:    this function closes the caller's open files, logs it out from all
  1437.       file servers, detaches the workstation from all non-default file
  1438.       servers, and maps a drive to the default server's SYS:LOGIN directory
  1439. Note:    this function is supported by NetWare 4.0+, Advanced NetWare 1.0+, and
  1440.       Alloy NTNX
  1441. SeeAlso: AH=D6h,AH=E3h/SF=14h,AH=F1h
  1442. --------N-21D8-------------------------------
  1443. INT 21 - Novell NetWare, Banyan VINES - ALLOCATE RESOURCE
  1444.     AH = D8h
  1445.     DL = resource number
  1446. Return: AL = status
  1447.         00h successful
  1448.         FFh unsucessful
  1449. Note:    this function is no longer used or supported by NetWare, and is not
  1450.       documented in Novell documents
  1451. SeeAlso: AH=D9h
  1452. --------N-21D9-------------------------------
  1453. INT 21 - Novell NetWare, Banyan VINES - DEALLOCATE RESOURCE
  1454.     AH = D9h
  1455.     DL = resource number
  1456. Return:    AL = status (see AH=D8h)
  1457. Note:    this function is no longer used or supported by NetWare, and is not
  1458.       documented in Novell documents
  1459. SeeAlso: AH=D8h
  1460. --------N-21DA-------------------------------
  1461. INT 21 - Novell NetWare - DIRECTORY SERVICES - GET VOLUME INFO WITH NUMBER
  1462.     AH = DAh
  1463.     DL = volume number
  1464.     ES:DI -> reply buffer (see below)
  1465. Return: AL = 00h
  1466. Note:    this function is supported by NetWare 4.0+ and Advanced NetWare 1.0+
  1467. SeeAlso: AH=36h,AH=E2h/SF=15h,AH=E3h/SF=E9h
  1468.  
  1469. Format of reply buffer:
  1470. Offset    Size    Description
  1471.  00h    WORD    sectors/block
  1472.  02h    WORD    total blocks on volume
  1473.  04h    WORD    unused blocks
  1474.  06h    WORD    total directory entries
  1475.  08h    WORD    unused directory entries
  1476.  0Ah 16 BYTEs    volume name, null padded
  1477.  1Ah    WORD    removable flag, 0000h = not removable
  1478. Note:    all words are big-endian
  1479. --------v-21DADA-----------------------------
  1480. INT 21 - VIRUS - "Gotcha" - INSTALLATION CHECK
  1481.     AX = DADAh
  1482. Return: AH = A5h
  1483. SeeAlso: AX=D5AAh,AH=DAFEh"VIRUS"
  1484. --------v-21DAFE-----------------------------
  1485. INT 21 - VIRUS - "Plovdiv 1.3" - INSTALLATION CHECK
  1486.     AX = DAFEh
  1487. Return: AX = 1234h if resident
  1488. SeeAlso: AX=DADAh,AH=DDh"VIRUS",AH=DEh"VIRUS"
  1489. --------N-21DB-------------------------------
  1490. INT 21 - Novell NetWare - WORKSTATION - GET NUMBER OF LOCAL DRIVES
  1491.     AH = DBh
  1492. Return: AL = number of local disks as set by LASTDRIVE in CONFIG.SYS
  1493. Note:    this function is supported by NetWare 4.0+, Advanced NetWare 1.0+, and
  1494.       Alloy NTNX
  1495. SeeAlso: AH=0Eh
  1496. --------N-21DC-------------------------------
  1497. INT 21 - Novell NetWare - CONNECTION SERVICES - GET CONNECTION NUMBER
  1498.     AH = DCh
  1499. Return: AL = logical connection number
  1500.         00h if NetWare not loaded or this machine is a non-dedicated server
  1501.     CX = station number in ASCII (CL = first digit)
  1502. Notes:    this function is supported by NetWare 4.0+, Banyan VINES, and Alloy
  1503.       NTNX
  1504.     station number only unique for those PCs connected to same semaphore
  1505.       service
  1506. --------d-21DC-------------------------------
  1507. INT 21 - PCMag PCMANAGE/DCOMPRES - TURN ON/OFF
  1508.     AH = DCh
  1509.     DX = state
  1510.         0000h turn on
  1511.         0001h turn off
  1512. SeeAlso: AX=FEDCh
  1513. --------N-21DD-------------------------------
  1514. INT 21 - Novell NetWare - WORKSTATION - SET NetWare ERROR MODE
  1515.     AH = DDh
  1516.     DL = error mode
  1517.         00h invoke INT 24 on critical I/O errors (default)
  1518.         01h return NetWare extended error code in AL
  1519.         02h return error code in AL, mapped to standard DOS error codes
  1520. Return: AL = previous error mode
  1521. Note:    this function is supported by Advanced NetWare 2.0+
  1522. SeeAlso: INT 24
  1523. --------v-21DD-------------------------------
  1524. INT 21 - VIRUS - "Jerusalem"-family - RELOCATE VIRUS???
  1525.     AH = DDh
  1526.     CX = number of bytes to copy
  1527.     DS:SI -> source of copy
  1528.     ES:DI -> destination of copy
  1529. Return: does not return normally; return address is caller's CS:0100h with
  1530.       AX = ???
  1531. SeeAlso: AH=E0h"VIRUS",AH=EEh"VIRUS"
  1532. --------v-21DE-------------------------------
  1533. INT 21 - VIRUS - "Durban" - INSTALLATION CHECK
  1534.     AH = DEh
  1535. Return: AH = DFh if resident
  1536. SeeAlso: AX=DAFEh,AX=DEDEh"VIRUS"
  1537. --------v-21DE-------------------------------
  1538. INT 21 - VIRUS - "April 1st EXE" - ???
  1539.     AH = DEh
  1540.     ???
  1541. Return: ???
  1542. --------N-21DE-------------------------------
  1543. INT 21 - Novell NetWare - MESSAGE SERVICES - SET BROADCAST MODE
  1544.     AH = DEh
  1545.     DL = broadcast mode
  1546.         00h receive server and workstation broadcasts (default)
  1547.         01h receive server broadcasts, discard user messages
  1548.         02h store server broadcasts for retrieval
  1549.         03h store all broadcasts for retrieval
  1550. Return: AL = new broadcast mode
  1551. Note:    this function is supported by NetWare 4.0+ and Advanced NetWare 1.0+
  1552. --------N-21DE--DL04-------------------------
  1553. INT 21 - Novell NetWare - MESSAGE SERVICES - GET BROADCAST MODE
  1554.     AH = DEh
  1555.     DL = 04h
  1556. Return: AL = current broadcast mode
  1557.         00h receive server and workstation broadcasts (default)
  1558.         01h receive server broadcasts, discard user message
  1559.         02h store server broadcasts for retrieval
  1560.         03h store all broadcasts for retrieval
  1561. Note:    this function is supported by NetWare 4.0+ and Advanced NetWare 1.0+
  1562. --------N-21DE-------------------------------
  1563. INT 21 - Novell NetWare - SHELL TIMER INTERRUPT CHECKS
  1564.     AH = DEh
  1565.     DL = function
  1566.         05h disable shell timer interrupt checks
  1567.         06h enable shell timer interrupt checks
  1568. Return: ???
  1569. Note:    this function was added in NetWare 4.0, but is not listed in current
  1570.       Novell documentation and is probably no longer supported
  1571. --------v-21DEDE-----------------------------
  1572. INT 21 - VIRUS - "Brothers" - INSTALLATION CHECK
  1573.     AX = DEDEh
  1574. Return: AH = 41h if resident
  1575. SeeAlso: AH=DEh"VIRUS",AH=E0h"VIRUS"
  1576. --------N-21DF--DL00-------------------------
  1577. INT 21 - Novell NetWare - PRINT SERVICES - START LPT CAPTURE
  1578.     AH = DFh
  1579.     DL = 00h
  1580. Return: AL = status
  1581.         00h successful
  1582. Desc:    this function redirects the default LPT to a capture file on the file
  1583.       server
  1584. Note:    this function is supported by NetWare 4.0+, Advanced NetWare 1.0+, and
  1585.       Alloy NTNX; under NTNX, it sends a print break (see INT 17/AH=84h)
  1586.     a print job is queued when the first character of output is captured
  1587. SeeAlso: AX=B800h,AX=B804h,AH=DFh/DL=01h,AH=DFh/DL=02h,AH=DFh/DL=03h
  1588. SeeAlso: AH=DFh/DL=04h,AX=F003h
  1589. --------N-21DF--DL01-------------------------
  1590. INT 21 - Novell NetWare - PRINT SERVICES - END LPT CAPTURE
  1591.     AH = DFh
  1592.     DL = 01h
  1593. Return: AL = status
  1594.         00h successful
  1595. Desc:    stop redirecting the default LPT, close the capture file, and release
  1596.       the job in the print queue for printing
  1597. Note:    this function is supported by NetWare 4.0+, Advanced NetWare 1.0+, and
  1598.       Alloy NTNX; under NTNX, it sends a print break (see INT 17/AH=84h)
  1599.     after this call, the default LPT defaults to local printing
  1600. SeeAlso: AH=DFh/DL=00h,AH=DFh/DL=02h,AH=DFh/DL=03h,AH=DFh/DL=05h
  1601. --------N-21DF--DL02-------------------------
  1602. INT 21 - Novell NetWare - PRINT SERVICES - CANCEL LPT CAPTURE
  1603.     AH = DFh
  1604.     DL = 02h
  1605. Return: AL = status
  1606.         00h successful
  1607. Desc:    this function ends the capture of the default LPT, removes the job from
  1608.       the print queue, and deletes the capture file unless it is a
  1609.       permanent capture file
  1610. Notes:    this function is supported by NetWare 4.0+, Advanced NetWare 1.0+, and
  1611.       Alloy NTNX; under NTNX, it sends a print break (see INT 17/AH=84h)
  1612.     after this call, the default LPT defaults to local printing
  1613. SeeAlso: AH=DFh/DL=00h,AH=DFh/DL=06h
  1614. --------N-21DF--DL03-------------------------
  1615. INT 21 - Novell NetWare - PRINT SERVICES - FLUSH LPT CAPTURE
  1616.     AH = DFh
  1617.     DL = 03h
  1618. Return: AL = status
  1619.         00h successful
  1620. Desc:    this function closes the current capture file for the default LPT
  1621.       and starts printing it if it is not a permanent capture file
  1622. Notes:    this function is supported by NetWare 4.0+, Advanced NetWare 1.0+, and
  1623.       Alloy NTNX; under NTNX, it sends a print break (see INT 17/AH=84h)
  1624.     if more data is sent to the LPT port after this call, a new capture
  1625.       file will be opeend
  1626. SeeAlso: AH=DFh/DL=00h,AH=DFh/DL=01h,AH=DFh/DL=02h,AH=DFh/DL=07h
  1627. --------N-21DF--DL04-------------------------
  1628. INT 21 - Novell NetWare - PRINT SERVICES - START SPECIFIC LPT CAPTURE
  1629.     AH = DFh
  1630.     DL = 04h
  1631.     DH = LPT port (00h-02h)
  1632. Return: AL = status
  1633.         00h successful
  1634. Desc:    this function redirects the specified LPT to a capture file on the file
  1635.       server
  1636. Notes:    this function is supported by Advanced NetWare 2.1+
  1637.     a print job is queued when the first character of output is captured
  1638. SeeAlso: AX=B800h,AH=DFh/DL=00h,AH=DFh/DL=05h,AH=DFh/DL=06h,AH=DFh/DL=07h
  1639. SeeAlso: AX=F003h
  1640. --------N-21DF--DL05-------------------------
  1641. INT 21 - Novell NetWare - PRINT SERVICES - END SPECIFIC LPT CAPTURE
  1642.     AH = DFh
  1643.     DL = 05h
  1644.     DH = LPT port (00h-02h)
  1645. Return: AL = status
  1646.         00h successful
  1647. Desc:    stop redirecting the specified LPT, close the capture file, and release
  1648.       the job in the print queue for printing
  1649. Notes:    this function is supported by Advanced NetWare 2.1+
  1650.     after this call, the specified LPT defaults to local printing
  1651. SeeAlso: AH=DFh/DL=01h,AH=DFh/DL=04h,AH=DFh/DL=06h,AH=DFh/DL=07h
  1652. --------N-21DF--DL06-------------------------
  1653. INT 21 - Novell NetWare - PRINT SERVICES - CANCEL SPECIFIC LPT CAPTURE
  1654.     AH = DFh
  1655.     DL = 06h
  1656.     DH = LPT port (00h-02h)
  1657. Return: AL = status
  1658.         00h successful
  1659. Desc:    this function ends the capture of the specified LPT, removes the job
  1660.       from the print queue, and deletes the capture file unless it is a
  1661.       permanent capture file
  1662. Notes:    this function is supported by Advanced NetWare 2.1+
  1663.     after this call, the specified LPT defaults to local printing
  1664. SeeAlso: AH=DFh/DL=02h,AH=DFh/DL=04h,AH=DFh/DL=05h,AH=DFh/DL=07h
  1665. --------N-21DF--DL07-------------------------
  1666. INT 21 - Novell NetWare - PRINT SERVICES - FLUSH SPECIFIC LPT CAPTURE
  1667.     AH = DFh
  1668.     DL = 07h
  1669.     DH = LPT port (00h-02h)
  1670. Return: AL = status
  1671.         00h successful
  1672. Desc:    this function closes the current capture file for the specified LPT
  1673.       and starts printing it if it is not a permanent capture file
  1674. Notes:    this function is supported by Advanced NetWare 2.1+
  1675.     if more data is sent to the LPT port after this call, a new capture
  1676.       file will be opeend
  1677. SeeAlso: AH=DFh/DL=03h,AH=DFh/DL=04h,AH=DFh/DL=05h,AH=DFh/DL=06h
  1678. --------T-21DF00DX534C-----------------------
  1679. INT 21 U - Software Carousel - INSTALLATION CHECK
  1680.     AX = DF00h
  1681.     DX = 534Ch ("SL")
  1682.     DI = 534Ch ("SL")
  1683. Return: AX = 00FFh if installed
  1684.         ???
  1685. Program: Software Carousel is a task switcher by SoftLogic Solutions, Inc.
  1686. --------T-21DF01-----------------------------
  1687. INT 21 - Software Carousel - SWITCH TO ANOTHER TASK
  1688.     AX = DF01h
  1689.     BL = task number (00h = next task)
  1690. Return: AL = status
  1691.         00h Carousel not running
  1692.         01h successful
  1693.         FFh unsucessful
  1694.         AH = error code (01h,02h) (see below)
  1695.  
  1696. Values for error code:
  1697.  00h    invalid subfunction in AL
  1698.  01h    invalid task number
  1699.  02h    tried to switch to task with no memory size
  1700.  03h    tried to kill program in partition with no program running
  1701.  04h    tried to change size of an active memory partition
  1702.  05h    invalid memory size
  1703.  06h    tried to send command to task with a pending previous command
  1704. --------T-21DF02-----------------------------
  1705. INT 21 - Software Carousel - KILL PROGRAM IN MEMORY PARTITION
  1706.     AX = DF02h
  1707.     BL = task number
  1708. Return: AL = status
  1709.         00h Carousel not running
  1710.         01h successful
  1711.         FFh unsucessful
  1712.         AH = error code (01h,03h) (see AX=DF01h)
  1713. --------T-21DF03-----------------------------
  1714. INT 21 - Software Carousel - GET PARTITION SIZE AND PROGRAM STATUS
  1715.     AX = DF03h
  1716.     BL = task number
  1717. Return: AL = status
  1718.         00h Carousel not running
  1719.         01h successful
  1720.         BL = partition state (00h no program running, 01h prog running)
  1721.         DX = partition size in KB
  1722.         FFh unsucessful
  1723.         AH = error code (01h) (see AX=DF01h)
  1724. --------T-21DF04-----------------------------
  1725. INT 21 - Software Carousel - GET PARTITION NAME
  1726.     AX = DF04h
  1727.     BL = task number
  1728. Return: AL = status
  1729.         00h Carousel not running
  1730.         01h successful
  1731.         CX = length of name (00h if default partition name)
  1732.         ES:BX -> partition name (if CX nonzero)
  1733.         FFh unsucessful
  1734.         AH = error code (01h) (see AX=DF01h)
  1735. --------T-21DF05-----------------------------
  1736. INT 21 - Software Carousel - CHANGE PARTITION SIZE
  1737.     AX = DF05h
  1738.     BL = task number
  1739.     DX = new size in KB
  1740. Return: AL = status
  1741.         00h Carousel not running
  1742.         01h successful
  1743.         FFh unsucessful
  1744.         AH = error code (01h,04h,05h) (see AX=DF01h)
  1745.     BX = minimum size allowed
  1746.     CX = maximum size available
  1747. --------T-21DF06-----------------------------
  1748. INT 21 - Software Carousel - CHANGE PARTITION NAME
  1749.     AX = DF06h
  1750.     BL = task number
  1751.     CX = length of new name (00h to use default, max 18h)
  1752.     DS:SI -> new name
  1753. Return: AL = status
  1754.         00h Carousel not running
  1755.         01h successful
  1756.         FFh unsucessful
  1757.         AH = error code (01h) (see AX=DF01h)
  1758. --------T-21DF07-----------------------------
  1759. INT 21 - Software Carousel - SEND COMMAND TO MEMORY SECTION
  1760.     AX = DF07h
  1761.     BL = task number
  1762.     CX = length of command (max 8 chars)
  1763.     DS:SI -> command line
  1764. Return: AL = status
  1765.         00h Carousel not running
  1766.         01h successful
  1767.         FFh unsucessful
  1768.         AH = error code (01h,06h) (see AX=DF01h)
  1769. Note:    the maximum length seems too small and may be a typo for 80 characters
  1770. --------T-21DF08-----------------------------
  1771. INT 21 - Software Carousel - SELECTIVELY ENABLE/DISABLE MENU AND SWITCHING
  1772.     AX = DF08h
  1773.     BL = new state of keyboard (00h disabled, 01h enabled)
  1774. Return: AL = status
  1775.         00h Carousel not running
  1776.         01h successful
  1777. Program: Software Carousel is a task switcher by SoftLogic Solutions, Inc.
  1778. Note:    when the keyboard is is disabled, the user may neither access the
  1779.       Carousel menu nor switch to another memory section
  1780. --------T-21DF09-----------------------------
  1781. INT 21 - Software Carousel - BOOT THE SYSTEM
  1782.     AX = DF09h
  1783. Return: AL = status
  1784.         00h Carousel not running
  1785.         FFh unsucessful
  1786.         AH = error code (01h,03h) (see AX=DF01h)
  1787. Note:    this function never returns is successful
  1788. --------T-21DF0A-----------------------------
  1789. INT 21 - Software Carousel - GET MEMORY SIZE/PARTITION NUMBER OF CURRENT TASK
  1790.     AX = DF0Ah
  1791. Return: AL = status
  1792.         00h Carousel not running
  1793.         01h successful
  1794.         BL = task number
  1795.         DX = memory size in KB
  1796.         FFh unsucessful
  1797.         AH = error code (01h,03h) (see AX=DF01h)
  1798. --------T-21DF0B-----------------------------
  1799. INT 21 - Software Carousel - SET TASK SWITCH CALLBACK
  1800.     AX = DF0Bh
  1801.     BH = interrupt number or 00h
  1802.     BL = function number to invoke on partition switch
  1803.     CL = function number to call when it is safe for resident programs
  1804.         to perform DOS calls
  1805.     DS:DX -> FAR function to call if BH=00h
  1806. Return: AL = status
  1807.         00h Carousel not running
  1808.         01h successful
  1809.         FFh unsucessful
  1810.         AH = error code (01h,03h) (see AX=DF01h)
  1811. Notes:    the specified interrupt or FAR function is called with AH set to the
  1812.       appropriate one of the values specified in BL and CL, and BL set to
  1813.       the new task number
  1814.     the function specified by CL will not be called until the notification
  1815.       is enabled with AX=DF0Ch
  1816. SeeAlso: AX=DF0Ch
  1817. --------T-21DF0C-----------------------------
  1818. INT 21 - Software Carousel - ENABLE DOS-CALL SAFETY NOTIFICATION
  1819.     AX = DF0Ch
  1820. Return: AL = status
  1821.         00h Carousel not running
  1822.         01h successful
  1823. Program: Software Carousel is a task switcher by SoftLogic Solutions, Inc.
  1824. SeeAlso: AX=DF0Bh
  1825. --------O-21E0-------------------------------
  1826. INT 21 - Digital Research DOS Plus - CALL BDOS
  1827.     AH = E0h
  1828.     CL = BDOS function number (see INT E0"CP/M")
  1829.     other registers as appropriate for function
  1830. Return: as appropriate for function
  1831. SeeAlso: AX=4459h,INT E0"CP/M"
  1832. --------E-21E0-------------------------------
  1833. INT 21 - OS/286, OS/386 - INITIALIZE REAL PROCEDURE
  1834.     AH = E0h
  1835.     ???
  1836. Return: ???
  1837. SeeAlso: AH=E1h"OS/286"
  1838. --------T-21E0-------------------------------
  1839. INT 21 - DoubleDOS - MENU CONTROL
  1840.     AH = E0h
  1841.     AL = subfunction
  1842.         01h exchange tasks
  1843.         73h resume invisible job if suspended
  1844.         74h kill other job
  1845.         75h suspend invisible job
  1846. Note:    identical to AH=F0h
  1847. SeeAlso: AH=F0h"DoubleDOS"
  1848. --------v-21E0-------------------------------
  1849. INT 21 - VIRUS - "Jerusalem", "Armagedon" - INSTALLATION CHECK
  1850.     AH = E0h
  1851. Return: AX = 0300h if "Jerusalem" resident
  1852.     AX = DADAh if "Armagedon" resident
  1853. SeeAlso: AH=DEh"VIRUS",AX=DEDEh"VIRUS",AX=E00Fh
  1854. --------N-21E0-------------------------------
  1855. INT 21 - Novell NetWare, Alloy NTNX - PRINT SPOOLING
  1856.     AH = E0h
  1857.     DS:SI -> request buffer (see below)
  1858.     ES:DI -> reply buffer
  1859. Return: AL = status
  1860. Note:    this function was added in NetWare 4.0, but is no longer listed in
  1861.       current Novell documentation and may no longer be supported
  1862. SeeAlso: AH-E3h/SF=68h
  1863.  
  1864. Format of request buffer:
  1865. Offset    Size    Description
  1866.  00h    WORD    length of following data
  1867.  02h    BYTE    subfunction
  1868.         00h spool data to a capture file
  1869.         01h close and queue capture file
  1870.         02h set spool flags
  1871.         03h spool existing file
  1872.         04h get spool queue entry
  1873.         05h remove entry from spool queue
  1874.  03h    ???
  1875. --------N-21E0--SF06-------------------------
  1876. INT 21 - Novell NetWare - PRINT SERVICES - GET PRINTER STATUS
  1877.     AH = E0h subfn 06h
  1878.     DS:SI -> request buffer (see below)
  1879.     ES:DI -> reply buffer (see below)
  1880. Return: AL = status
  1881.         00h successful
  1882.         FFh no such printer
  1883. Desc:    get current state of specified printer attached to the server
  1884. Note:    this function is supported by NetWare 4.0+, Advanced NetWare 1.0+, and
  1885.       Alloy NTNX
  1886.  
  1887. Format of request buffer:
  1888. Offset    Size    Description
  1889.  00h    WORD    0002h (length of following data)
  1890.  02h    BYTE    06h (subfunction "Get Printer Status")
  1891.  03h    BYTE    printer number (00h-04h)
  1892.  
  1893. Format of reply buffer:
  1894. Offset    Size    Description
  1895.  00h    WORD    (call) 0004h (size of following results buffer)
  1896.  02h    BYTE    flag: 00h printer active, FFh printer halted
  1897.  03h    BYTE    flag: 00h printer online, 01h printer offline
  1898.  04h    BYTE    current form type
  1899.  05h    BYTE    target printer number (00h-04h)
  1900.         same as number in request buffer unless rerouted by server
  1901.         console
  1902. --------N-21E0--SF09-------------------------
  1903. INT 21 - Novell NetWare - PRINT SERVICES - SPECIFY CAPTURE FILE
  1904.     AH = E0h subfn 09h
  1905.     DS:SI -> request buffer (see below)
  1906.     ES:DI -> reply buffer (see below)
  1907. Return: AL = status
  1908.         00h successful
  1909.         9Ch invalid path
  1910. Desc:    create a permanent capture file for the next print capture to be
  1911.       started
  1912. Notes:    this function is supported by NetWare 4.0+, Advanced NetWare 1.0+, and
  1913.       Alloy NTNX
  1914.     the caller must have read, write, and create rights for the directory
  1915.       containing the capture file
  1916.  
  1917. Format of request buffer:
  1918. Offset    Size    Description
  1919.  00h    WORD    length of following data (max 102h)
  1920.  02h    BYTE    09h (subfunction "Specify Capture File")
  1921.  03h    BYTE    directory handle or 00h
  1922.  04h    BYTE    length of filename
  1923.  05h  N BYTEs    name of capture file
  1924.  
  1925. Format of reply buffer:
  1926. Offset    Size    Description
  1927.  00h    WORD    (call) 0000h (no results returned)
  1928. --------v-21E00F-----------------------------
  1929. INT 21 - VIRUS - "8-tunes" - INSTALLATION CHECK
  1930.     AX = E00Fh
  1931. Return: AX = 4C31h if resident
  1932. SeeAlso: AH=E0h"VIRUS",AH=E1h"VIRUS"
  1933. --------E-21E1-------------------------------
  1934. INT 21 - OS/286, OS/386 - ISSUE REAL PROCEDURE CALL
  1935.     AH = E1h
  1936.     ???
  1937. Return: ???
  1938. Note:    protected mode only???
  1939. SeeAlso: AH=E0h"OS/286",AH=E2h"OS/286",AH=E3h"OS/286",AX=250Eh,INT 31/AX=0301h
  1940. --------T-21E1-------------------------------
  1941. INT 21 - DoubleDOS - CLEAR KEYBOARD BUFFER FOR CURRENT JOB
  1942.     AH = E1h
  1943. SeeAlso: AH=E2h"DoubleDOS",AH=E3h"DoubleDOS",AH=E8h"DoubleDOS"
  1944. SeeAlso: AH=F1h"DoubleDOS"
  1945. --------v-21E1-------------------------------
  1946. INT 21 - VIRUS - "Mendoza", "Fu Manchu" - INSTALLATION CHECK
  1947.     AH = E1h
  1948. Return: AX = 0300h if "Mendoza" resident
  1949.     AX = 0400h if "Fu Manchu" resident
  1950. SeeAlso: AX=E00Fh,AH=E4h"VIRUS"
  1951. --------N-21E1--SF00-------------------------
  1952. INT 21 - Novell NetWare - MESSAGE SERVICES - SEND BROADCAST MESSAGE
  1953.     AH = E1h subfn 00h
  1954.     DS:SI -> request buffer (see below)
  1955.     ES:DI -> reply buffer (see below)
  1956. Return: AL = status
  1957.         00h successful
  1958.         FEh I/O error or out of dynamic workspace
  1959. Note:    this function is supported by NetWare 4.0+ and Advanced NetWare 1.0+
  1960. SeeAlso: AH=DEh"NetWare",AH=DEh/DL=04h,AH=E1h/SF=01h,AH=E1h/SF=04h
  1961. SeeAlso: AH=E1h/SF=09h
  1962.  
  1963. Format of request buffer:
  1964. Offset    Size    Description
  1965.  00h    WORD    length of following data (max 9Eh)
  1966.  02h    BYTE    00h (subfunction "Send Broadcast Message")
  1967.  03h    BYTE    number of connections (01h-64h)
  1968.  04h  N BYTEs    list of connections to receive broadcast message
  1969.     BYTE    length of message (01h-37h)
  1970.       N BYTEs    broadcast message (no control characters or characters > 7Eh)
  1971.  
  1972. Format of reply buffer:
  1973. Offset    Size    Description
  1974.  00h    WORD    (call) size of following results buffer (max 65h)
  1975.  02h    BYTE    number of connections
  1976.  03h  N BYTEs    list of per-connection results
  1977.         00h successful
  1978.         FCh message rejected due to lack of buffer space
  1979.         FDh invalid connection number
  1980.         FFh blocked (see also AH=E1h/SF=02h)
  1981. --------N-21E1--SF01-------------------------
  1982. INT 21 - Novell NetWare - MESSAGE SERVICES - GET BROADCAST MESSAGE
  1983.     AH = E1h subfn 01h
  1984.     DS:SI -> request buffer (see below)
  1985.     ES:DI -> reply buffer (see below)
  1986. Return: AL = status
  1987.         00h successful
  1988.         FCh full message queue
  1989.         FEh out of dynamic workspace
  1990. Note:    this function is supported by NetWare 4.0+ and Advanced NetWare 1.0+
  1991. SeeAlso: AH=DEh/DL=04h,AH=E1h/SF=00h,AH=E1h/SF=05h,AH=E1h/SF=09h
  1992.  
  1993. Format of request buffer:
  1994. Offset    Size    Description
  1995.  00h    WORD    0001h (length of following data)
  1996.  02h    BYTE    01h (subfunction "Get Broadcast Message")
  1997.  
  1998. Format of reply buffer:
  1999. Offset    Size    Description
  2000.  00h    WORD    (call) size of following results buffer (max 38h)
  2001.  02h    BYTE    length of message (00h-37h)
  2002.         00h if no broadcast messages pending
  2003.  03h  N BYTEs    message (no control characters or characters > 7Eh)
  2004. --------N-21E1-------------------------------
  2005. INT 21 - Novell NetWare - MESSAGE SERVICES - ENABLE/DISABLE BROADCAST MESSAGES
  2006.     AH = E1h
  2007.     DS:SI -> request buffer (see below)
  2008.     ES:DI -> reply buffer
  2009. Return: AL = error code
  2010. Note:    these functions are supported by NetWare 4.0+ but are not listed in
  2011.       _NetWare_System_Calls--DOS_; they may be obsolete
  2012. SeeAlso: AH=E1h/SF=00h,AH=E1h/SF=04h,AH=E1h/SF=09h
  2013.  
  2014. Format of request buffer:
  2015. Offset    Size    Description
  2016.  00h    WORD    length of following data (max 9Eh)
  2017.  02h    BYTE    subfunction
  2018.         02h disable station broadcasts
  2019.         03h enable station broadcasts
  2020.  03h    ???
  2021.  
  2022. Format of reply buffer:
  2023. Offset    Size    Description
  2024.  00h    WORD    (call) size of following results buffer
  2025.  02h    ???
  2026. --------N-21E1--SF04-------------------------
  2027. INT 21 - Novell NetWare - MESSAGE SERVICES - SEND PERSONAL MESSAGE
  2028.     AH = E1h subfn 04h
  2029.     DS:SI -> request buffer (see below)
  2030.     ES:DI -> reply buffer (see below)
  2031. Return: AL = status
  2032.         00h successful
  2033.         FEh I/O error or out of dynamic workspace
  2034. Notes:    this function is supported by NetWare 4.0+ and Advanced NetWare 1.0+
  2035.     message pipes use CPU time on the file server; IPX, SPX, or NetBIOS
  2036.       connections should be used for peer-to-peer communications as these
  2037.       protocols do not use file server time
  2038. SeeAlso: AH=E1h/SF=00h,AH=E1h/SF=05h,AH=E1h/SF=06h,AH=E1h/SF=08h
  2039.  
  2040. Format of request buffer:
  2041. Offset    Size    Description
  2042.  00h    WORD    length of following data (max E5h)
  2043.  02h    BYTE    04h (subfunction "Send Personal Message")
  2044.  03h    BYTE    number of connections (01h-64h)
  2045.  04h  N BYTEs    list of connections to receive broadcast message
  2046.     BYTE    length of message (01h-7Eh)
  2047.       N BYTEs    message (no control characters or characters > 7Eh)
  2048.  
  2049. Format of reply buffer:
  2050. Offset    Size    Description
  2051.  00h    WORD    (call) size of following results buffer (max 65h)
  2052.  02h    BYTE    number of connections
  2053.  03h  N BYTEs    list of per-connection results
  2054.         00h successful
  2055.         FCh message rejected because queue is full (contains 6 msgs)
  2056.         FDh incomplete pipe
  2057.         FFh failed
  2058. --------N-21E1--SF05-------------------------
  2059. INT 21 - Novell NetWare - MESSAGE SERVICES - GET PERSONAL MESSAGE
  2060.     AH = E1h subfn 05h
  2061.     DS:SI -> request buffer (see below)
  2062.     ES:DI -> reply buffer (see below)
  2063. Return: AL = status
  2064.         00h successful
  2065.         FEh out of dynamic workspace
  2066. Desc:    return the oldest message in the default file server's message queue
  2067.       for the calling workstation
  2068. Note:    this function is supported by NetWare 4.0+ and Advanced NetWare 1.0+
  2069. SeeAlso: AH=E1h/SF=01h,AH=E1h/SF=04h,AH=E1h/SF=06h,AH=E1h/SF=08h
  2070.  
  2071. Format of request buffer:
  2072. Offset    Size    Description
  2073.  00h    WORD    0001h (length of following data)
  2074.  02h    BYTE    05h (subfunction "Get Personal Message")
  2075.  
  2076. Format of reply buffer:
  2077. Offset    Size    Description
  2078.  00h    WORD    (call) size of following results buffer (max 80h)
  2079.  02h    BYTE    connection number of sending station
  2080.  03h    BYTE    length of message (00h-7Eh)
  2081.         00h if no personal messages pending
  2082.  04h  N BYTEs    message (no control characters or characters > 7Eh)
  2083. --------N-21E1--SF06-------------------------
  2084. INT 21 - Novell NetWare - MESSAGE SERVICES - OPEN MESSAGE PIPE
  2085.     AH = E1h subfn 06h
  2086.     DS:SI -> request buffer (see below)
  2087.     ES:DI -> reply buffer (see below)
  2088. Return: AL = status
  2089.         00h successful
  2090.         FEh out of dynamic workspace
  2091. Note:    this function is supported by NetWare 4.0+ and Advanced NetWare 1.0+
  2092. SeeAlso: AH=E1h/SF=04h,AH=E1h/SF=07h,AH=E1h/SF=08h
  2093.  
  2094. Format of request buffer:
  2095. Offset    Size    Description
  2096.  00h    WORD    length of following data (max 66h)
  2097.  02h    BYTE    06h (subfunction "Open Message Pipe")
  2098.  03h    BYTE    number of pipes to open (01h-64h)
  2099.  04h  N BYTEs    list of connection numbers
  2100.  
  2101. Format of reply buffer:
  2102. Offset    Size    Description
  2103.  00h    WORD    (call) size of following results buffer (max 65h)
  2104.  02h    BYTE    number of connections
  2105.  03h  N BYTEs    list of results
  2106.         00h successful
  2107.         FEh incomplete (target half not yet created)
  2108.         FFh failed
  2109. --------N-21E1--SF07-------------------------
  2110. INT 21 - Novell NetWare - MESSAGE SERVICES - CLOSE MESSAGE PIPE
  2111.     AH = E1h subfn 07h
  2112.     DS:SI -> request buffer (see below)
  2113.     ES:DI -> reply buffer (see below)
  2114. Return: AL = status
  2115.         00h successful
  2116.         FCh full message queue
  2117.         FEh out of dynamic workspace
  2118. Note:    this function is supported by NetWare 4.0+ and Advanced NetWare 1.0+
  2119. SeeAlso: AH=E1h/SF=05h,AH=E1h/SF=06h,AH=E1h/SF=08h
  2120.  
  2121. Format of request buffer:
  2122. Offset    Size    Description
  2123.  00h    WORD    length of following data (max 66h)
  2124.  02h    BYTE    07h (subfunction "Close Message Pipe")
  2125.  03h    BYTE    number of pipes to close (01h-64h)
  2126.  04h  N BYTEs    list of connection numbers
  2127.  
  2128. Format of reply buffer:
  2129. Offset    Size    Description
  2130.  00h    WORD    (call) size of following results buffer (max 65h)
  2131.  02h    BYTE    number of connections
  2132.  03h  N BYTEs    list of results
  2133.         00h successful
  2134.         FDh failed
  2135.         FFh no such pipe
  2136. --------N-21E1--SF08-------------------------
  2137. INT 21 - Novell NetWare - MESSAGE SERVICES - CHECK PIPE STATUS
  2138.     AH = E1h subfn 08h
  2139.     DS:SI -> request buffer (see below)
  2140.     ES:DI -> reply buffer (see below)
  2141. Return: AL = status (see below)
  2142. Note:    this function is supported by NetWare 4.0+ and Advanced NetWare 1.0+
  2143. SeeAlso: AH=E1h/SF=05h,AH=E1h/SF=06h,AH=E1h/SF=07h
  2144.  
  2145. Values for status:
  2146.  00h successful
  2147.  FCh full message queue
  2148.  FEh out of dynamic workspace
  2149.  
  2150. Format of request buffer:
  2151. Offset    Size    Description
  2152.  00h    WORD    length of following data (max 66h)
  2153.  02h    BYTE    08h (subfunction "Check Pipe Status")
  2154.  03h    BYTE    number of pipes to monitor (01h-64h)
  2155.  04h  N BYTEs    list of connection numbers
  2156.  
  2157. Format of reply buffer:
  2158. Offset    Size    Description
  2159.  00h    WORD    (call) size of following results buffer (max 65h)
  2160.  02h    BYTE    number of connections
  2161.  03h  N BYTEs    list of pipe statuses
  2162.         00h open
  2163.         FEh incomplete
  2164.         FFh closed
  2165. --------N-21E1--SF09-------------------------
  2166. INT 21 - Novell NetWare - MESSAGE SERVICES - BROADCAST TO CONSOLE
  2167.     AH = E1h subfn 09h
  2168.     DS:SI -> request buffer (see below)
  2169.     ES:DI -> reply buffer (see below)
  2170. Return: AL = status (see AH=E1h/SF=09h)
  2171. Desc:    send a one-line message to the system console on the default file
  2172.       server
  2173. Note:    this function is supported by NetWare 4.0+ and Advanced NetWare 1.0+
  2174. SeeAlso: AH=DEh/DL=04h,AH=E1h/SF=00h,AH=E1h/SF=01h,AH=E3h/SF=D1h
  2175.  
  2176. Format of request buffer:
  2177. Offset    Size    Description
  2178.  00h    WORD    length of following data (max 3Eh)
  2179.  02h    BYTE    09h (subfunction "Broadcast to Console")
  2180.  03h    BYTE    length of message (01h-3Ch)
  2181.  04h  N BYTEs    message (no control characters or characters > 7Eh)
  2182.  
  2183. Format of reply buffer:
  2184. Offset    Size    Description
  2185.  00h    WORD    (call) 0000h (no results returned)
  2186. --------E-21E2-------------------------------
  2187. INT 21 - OS/286, OS/386 - SET REAL PROCEDURE SIGNAL HANDLER
  2188.     AH = E2h
  2189.     ???
  2190. Return: ???
  2191. SeeAlso: AH=E0h"OS/286",AH=E1h"OS/286",AH=E6h"OS/286"
  2192. --------N-21E2-------------------------------
  2193. INT 21 - DoubleDOS - SEND CHARACTER TO KEYBOARD BUFFER OF OTHER JOB
  2194.     AH = E2h
  2195.     AL = character
  2196. Return: AL = 00h successful
  2197.          01h buffer full (128 characters)
  2198. SeeAlso: AH=E1h"DoubleDOS",AH=E3h"DoubleDOS",AH=E8h"DoubleDOS"
  2199. SeeAlso: AH=F2h"DoubleDOS"
  2200. --------N-21E2--SF00-------------------------
  2201. INT 21 - Novell NetWare - DIRECTORY SERVICES - SET DIRECTORY HANDLE
  2202.     AH = E2h subfn 00h
  2203.     DS:SI -> request buffer (see below)
  2204.     ES:DI -> reply buffer (see below)
  2205. Return: AL = status (00h,98h,9Bh,9Ch) (see below)
  2206. Desc:    set the target handle to reference the directory specified by the
  2207.       source handle and the source path; both handles must refer to the
  2208.       same file server
  2209. Notes:    this function is supported by NetWare 4.0+, Advanced NetWare 1.0+, and
  2210.       Alloy NTNX
  2211.     the target handle is not changed if this function fails
  2212. SeeAlso: AH=E2h/SF=01h,AH=E2h/SF=12h,AH=E2h/SF=13h
  2213.  
  2214. Values for status:
  2215.  00h    successful
  2216.  84h    not permitted to create
  2217.  8Ah    not permitted to delete
  2218.  8Bh    not permitted to rename
  2219.  8Ch    not permitted to modify
  2220.  98h    nonexistent volume
  2221.  9Bh    invalid directory handle
  2222.  9Ch    invalid path
  2223.  9Eh    invalid filename
  2224.  9Fh    directory currently in use
  2225.  A0h    directory not empty
  2226.  FCh    no such bindery object
  2227.  
  2228. Format of request buffer:
  2229. Offset    Size    Description
  2230.  00h    WORD    length of following data (max 103h)
  2231.  02h    BYTE    00h (subfunction "Set Directory Handle")
  2232.  03h    BYTE    directory handle of target
  2233.  04h    BYTE    directory handle of source
  2234.  05h    BYTE    length of source directory path (01h-FFh)
  2235.  06h  N BYTEs    source directory path
  2236.  
  2237. Format of reply buffer:
  2238. Offset    Size    Description
  2239.  00h    WORD    (call) 0000h (no results returned)
  2240. --------N-21E2--SF01-------------------------
  2241. INT 21 - Novell NetWare - DIRECTORY SERVICES - GET DIRECTORY PATH
  2242.     AH = E2h subfn 01h
  2243.     DS:SI -> request buffer (see below)
  2244.     ES:DI -> reply buffer (see below)
  2245. Return: AL = status (00h,9Bh) (see AH=E2h/SF=00h)
  2246. Note:    this function is supported by NetWare 4.0+, Advanced NetWare 1.0+, and
  2247.       Alloy NTNX
  2248. SeeAlso: AH=E2h/SF=02h,AH=E2h/SF=03h,AH=E2h/SF=1Ah,AH=E9h
  2249.  
  2250. Format of request buffer:
  2251. Offset    Size    Description
  2252.  00h    WORD    0002h (length of following data)
  2253.  02h    BYTE    01h (subfunction "Get Directory Path")
  2254.  03h    BYTE    directory handle
  2255.  
  2256. Format of reply buffer:
  2257. Offset    Size    Description
  2258.  00h    WORD    (call) length of following data buffer
  2259.  02h    BYTE    length of directory path (01h-FFh)
  2260.  03h  N BYTEs    full directory path including volume
  2261. --------N-21E2--SF02-------------------------
  2262. INT 21 - Novell NetWare - DIRECTORY SERVICES - SCAN DIRECTORY INFORMATION
  2263.     AH = E2h subfn 02h
  2264.     DS:SI -> request buffer (see below)
  2265.     ES:DI -> reply buffer (see below)
  2266. Return: AL = status (00h,98h,9Bh,9Ch) (see AH=E2h/SF=00h)
  2267. Desc:    get information about the first or next subdirectory of the specified
  2268.       directory
  2269. Note:    this function is supported by NetWare 4.0+, Advanced NetWare 1.0+, and
  2270.       Alloy NTNX
  2271. SeeAlso: AH=E2h/SF=01h,AH=E2h/SF=03h,AH=E2h/SF=19h
  2272.  
  2273. Format of request buffer:
  2274. Offset    Size    Description
  2275.  00h    WORD    length of following data (max 104h)
  2276.  02h    BYTE    02h (subfunction "Scan Directory Information")
  2277.  03h    BYTE    directory handle
  2278.  04h    WORD    (big-endian) subdirectory number
  2279.         0000h for first call, returned subdir number + 1 on next call
  2280.  06h    BYTE    length of directory path
  2281.  07h  N BYTEs    directory path
  2282.  
  2283. Format of reply buffer:
  2284. Offset    Size    Description
  2285.  00h    WORD    (call) 001Ch (length of following data buffer)
  2286.  02h 16 BYTEs    subdirectory name
  2287.  12h    DWORD    (big-endian) date and time of creation (see below)
  2288.  16h    DWORD    (big-endian) object ID of owner
  2289.  1Ah    BYTE    maximum directory rights (see AH=E2h/SF=03h)
  2290.  1Bh    BYTE    unused
  2291.  1Ch    WORD    (big-endian) subdirectory number
  2292.  
  2293. Bitfields for date and time:
  2294.  bits 31-25    year-1980
  2295.  bits 24-21    month
  2296.  bits 20-16    day
  2297.  bits 15-11    hour
  2298.  bits 10-5    minute
  2299.  bits 4-0    second
  2300. --------N-21E2--SF03-------------------------
  2301. INT 21 - Novell NetWare - DIRECTORY SERVICES - GET EFFECTIVE DIRECTORY RIGHTS
  2302.     AH = E2h subfn 03h
  2303.     DS:SI -> request buffer (see below)
  2304.     ES:DI -> reply buffer (see below)
  2305. Return: AL = status (00h,98h,9Bh) (see AH=E2h/SF=00h)
  2306. Note:    this function is supported by NetWare 4.0+, Advanced NetWare 1.0+, and
  2307.       Alloy NTNX
  2308. SeeAlso: AH=E2h/SF=01h,AH=E2h/SF=02h
  2309.  
  2310. Format of request buffer:
  2311. Offset    Size    Description
  2312.  00h    WORD    length of following data (max 102h)
  2313.  02h    BYTE    03h (subfunction "Get Effective Directory Rights")
  2314.  03h    BYTE    directory handle
  2315.  04h    BYTE    length of directory path (00h-FFh)
  2316.  05h  N BYTEs    directory path
  2317.  
  2318. Format of reply buffer:
  2319. Offset    Size    Description
  2320.  00h    WORD    (call) 0001h (length of following data buffer)
  2321.  02h    BYTE    effective directory rights (see below)
  2322.  
  2323. Bitfields for directory rights:
  2324.  bit 0    reading allowed
  2325.  bit 1    writing allowed
  2326.  bit 2    opens allowed
  2327.  bit 3    file creation allowed
  2328.  bit 4    deletion allowed
  2329.  bit 5    "parental" may create/delete subdirectories and
  2330.     grant/revoke trustee rights
  2331.  bit 6    directory search allowed
  2332.  bit 7    file attributes may be changed
  2333. --------N-21E2--SF04-------------------------
  2334. INT 21 - Novell NetWare - DIRECTORY SERVICES - MODIFY MAXIMUM RIGHTS MASK
  2335.     AH = E2h subfn 04h
  2336.     DS:SI -> request buffer (see below)
  2337.     ES:DI -> reply buffer (see below)
  2338. Return: AL = status (00h,8Ch,98h,9Ch) (see AH=E2h/SF=00h)
  2339. Notes:    this function is supported by NetWare 4.0+, Advanced NetWare 1.0+, and
  2340.       Alloy NTNX
  2341. SeeAlso: AH=E2h/SF=03h,AH=E2h/SF=0Ah,AH=E2h/SF=0Dh
  2342.  
  2343. Format of request buffer:
  2344. Offset    Size    Description
  2345.  00h    WORD    length of following data (max 104h)
  2346.  02h    BYTE    04h (subfunction "Modify Maximum Rights Mask")
  2347.  03h    BYTE    directory handle
  2348.  04h    BYTE    rights to grant (see AH=E2h/SF=03h)
  2349.  05h    BYTE    rights to revoke (see AH=E2h/SF=03h)
  2350.  06h    BYTE    length of directory path (00h-FFh)
  2351.  07h  N BYTEs    directory path
  2352. Note:    the rights specified at offset 05h are revoked first, and then the
  2353.       rights specified at offset 04h are added to the resulting rights
  2354.       mask
  2355.  
  2356. Format of reply buffer:
  2357. Offset    Size    Description
  2358.  00h    WORD    (call) 0000h (no results returned)
  2359. --------N-21E2--SF05-------------------------
  2360. INT 21 - Novell NetWare - DIRECTORY SERVICES - GET VOLUME NUMBER
  2361.     AH = E2h subfn 05h
  2362.     DS:SI -> request buffer (see below)
  2363.     ES:DI -> reply buffer (see below)
  2364. Return: AL = status (00h,98h) (see AH=E2h/SF=00h)
  2365. Notes:    this function is supported by NetWare 4.0+, Advanced NetWare 1.0+, and
  2366.       Alloy NTNX
  2367. SeeAlso: AH=DAh,AH=E2h/SF=02h,AH=E2h/SF=05h,AH=E2h/SF=15h,AH=E3h/SF=E9h
  2368.  
  2369. Format of request buffer:
  2370. Offset    Size    Description
  2371.  00h    WORD    length of following data (max 12h)
  2372.  02h    BYTE    05h (subfunction "Get Volume Number")
  2373.  03h    BYTE    length of volume name (01h-10h)
  2374.  04h  N BYTEs    volume name
  2375.  
  2376. Format of reply buffer:
  2377. Offset    Size    Description
  2378.  00h    WORD    (call) 0001h (length of following results buffer)
  2379.  02h    BYTE    volume number
  2380. --------N-21E2--SF06-------------------------
  2381. INT 21 - Novell NetWare - DIRECTORY SERVICES - GET VOLUME NAME
  2382.     AH = E2h subfn 06h
  2383.     DS:SI -> request buffer (see below)
  2384.     ES:DI -> reply buffer (see below)
  2385. Return: AL = status (00h,98h) (see AH=E2h/SF=00h)
  2386. Notes:    this function is supported by NetWare 4.0+, Advanced NetWare 1.0+, and
  2387.       Alloy NTNX
  2388. SeeAlso: AH=DAh,AH=E2h/SF=02h,AH=E2h/SF=05h,AH=E2h/SF=15h,AH=E2h/SF=1Ah
  2389. SeeAlso: AH=E3h/SF=E9h
  2390.  
  2391. Format of request buffer:
  2392. Offset    Size    Description
  2393.  00h    WORD    0002h (length of following data)
  2394.  02h    BYTE    06h (subfunction "Get Volume Name")
  2395.  03h    BYTE    volume number
  2396.  
  2397. Format of reply buffer:
  2398. Offset    Size    Description
  2399.  00h    WORD    (call) 0011h (length of following results buffer)
  2400.  02h    BYTE    length of volume name
  2401.  03h 16 BYTEs    NUL-padded volume name
  2402. --------N-21E2--SF0A-------------------------
  2403. INT 21 - Novell NetWare - DIRECTORY SERVICES - CREATE DIRECTORY
  2404.     AH = E2h subfn 0Ah
  2405.     DS:SI -> request buffer (see below)
  2406.     ES:DI -> reply buffer (see below)
  2407. Return: AL = status (00h,84h,98h,FCh) (see AH=E2h/SF=00h)
  2408. Note:    this function is supported by NetWare 4.0+, Advanced NetWare 1.0+, and
  2409.       Alloy NTNX
  2410. SeeAlso: AH=39h,AH=E2h/SF=0Bh,AH=E2h/SF=0Fh
  2411.  
  2412. Format of request buffer:
  2413. Offset    Size    Description
  2414.  00h    WORD    length of following data (max 103h)
  2415.  02h    BYTE    0Ah (subfunction "Create Directory")
  2416.  03h    BYTE    directory handle
  2417.  04h    BYTE    maximum directory rights (see AH=E2h/SF=01h)
  2418.  05h    BYTE    length of directory path (00h-FFh)
  2419.  06h  N BYTEs    directory path
  2420.  
  2421. Format of reply buffer:
  2422. Offset    Size    Description
  2423.  00h    WORD    (call) 0000h (no data returned)
  2424. --------N-21E2--SF0B-------------------------
  2425. INT 21 - Novell NetWare - DIRECTORY SERVICES - DELETE DIRECTORY
  2426.     AH = E2h subfn 0Bh
  2427.     DS:SI -> request buffer (see below)
  2428.     ES:DI -> reply buffer (see below)
  2429. Return: AL = status (00h,8Ah,98h,9Bh,9Ch,9Fh,A0h) (see AH=E2h/SF=00h)
  2430. Note:    this function is supported by NetWare 4.0+, Advanced NetWare 1.0+, and
  2431.       Alloy NTNX
  2432. SeeAlso: AH=3Ah,AH=E2h/SF=0Ah,AH=E2h/SF=0Fh
  2433.  
  2434. Format of request buffer:
  2435. Offset    Size    Description
  2436.  00h    WORD    length of following data (max 103h)
  2437.  02h    BYTE    0Bh (subfunction "Delete Directory")
  2438.  03h    BYTE    directory handle
  2439.  04h    BYTE    unused
  2440.  05h    BYTE    length of directory path (00h-FFh)
  2441.  06h  N BYTEs    directory path
  2442.  
  2443. Format of reply buffer:
  2444. Offset    Size    Description
  2445.  00h    WORD    (call) 0000h (no data returned)
  2446. --------N-21E2--SF0C-------------------------
  2447. INT 21 - Novell NetWare - DIRECTORY SERVICES - SCAN DIRECTORY FOR TRUSTEES
  2448.     AH = E2h subfn 0Ch
  2449.     DS:SI -> request buffer (see below)
  2450.     ES:DI -> reply buffer (see below)
  2451. Return: AL = status
  2452.         00h successful
  2453.         9Ch no more trustees
  2454. Note:    this function is supported by Advanced NetWare 1.0+ and Alloy NTNX
  2455. SeeAlso: AH=E2h/SF=0Dh,AH=E2h/SF=0Eh,AH=E3h/SF=47h
  2456.  
  2457. Format of request buffer:
  2458. Offset    Size    Description
  2459.  00h    WORD    length of following data (max 103h)
  2460.  02h    BYTE    0Ch (subfunction "Scan Directory For Trustees")
  2461.  03h    BYTE    directory handle
  2462.  04h    BYTE    sequence number
  2463.         00h on first call, increment for each subsequent call
  2464.  05h    BYTE    length of directory path (00h-FFh)
  2465.  06h  N BYTEs    directory path
  2466.  
  2467. Format of reply buffer:
  2468. Offset    Size    Description
  2469.  00h    WORD    (call) 0031h (length of following results buffer)
  2470.  02h 16 BYTEs    directory name
  2471.  12h  4 BYTEs    date and time of creation
  2472.  16h    DWORD    (big-endian) object ID of owner
  2473.  1Ah  5 DWORDs    (big-endian) object IDs of Trustees 0 through 4
  2474.         00000000h = end of group
  2475.  2Eh  5 BYTEs    directory rights for Trustees 0 through 4 (see AH=E2h/SF=03h)
  2476. --------N-21E2--SF0D-------------------------
  2477. INT 21 - Novell NetWare - DIRECTORY SERVICES - ADD TRUSTEE TO DIRECTORY
  2478.     AH = E2h subfn 0Dh
  2479.     DS:SI -> request buffer (see below)
  2480.     ES:DI -> reply buffer (see below)
  2481. Return: AL = status (00h,8Ch,FCh) (see AH=E2h/SF=00h)
  2482. Note:    this function is supported by NetWare 4.0+, Advanced NetWare 1.0+, and
  2483.       Alloy NTNX
  2484. SeeAlso: AH=E2h/SF=0Ch,AH=E2h/SF=0Eh,AH=E3h/SF=47h
  2485.  
  2486. Format of request buffer:
  2487. Offset    Size    Description
  2488.  00h    WORD    length of following data (max 107h)
  2489.  02h    BYTE    0Dh (subfunction "Add Trustee To Directory")
  2490.  03h    BYTE    directory handle
  2491.  04h    DWORD    (big-endian) object ID of trustee
  2492.  08h    BYTE    trustee directory rights (see AH=E2h/SF=01h)
  2493.  09h    BYTE    length of directory path (00h-FFh)
  2494.  0Ah  N BYTEs    directory path
  2495.  
  2496. Format of reply buffer:
  2497. Offset    Size    Description
  2498.  00h    WORD    (call) 0000h (no data returned)
  2499. --------N-21E2--SF0E-------------------------
  2500. INT 21 - Novell NetWare - DIRECTORY SERVICES - DELETE TRUSTEE FROM DIRECTORY
  2501.     AH = E2h subfn 0Eh
  2502.     DS:SI -> request buffer (see below)
  2503.     ES:DI -> reply buffer (see below)
  2504. Return: AL = status (00h,98h,9Bh,9Ch) (see AH=E2h/SF=00h)
  2505. Note:    this function is supported by NetWare 4.0+, Advanced NetWare 1.0+, and
  2506.       Alloy NTNX
  2507. SeeAlso: AH=E2h/SF=0Ch,AH=E2h/SF=0Dh
  2508.  
  2509. Format of request buffer:
  2510. Offset    Size    Description
  2511.  00h    WORD    length of following data (max 107h)
  2512.  02h    BYTE    0Eh (subfunction "Delete Trustee From Directory")
  2513.  03h    BYTE    directory handle
  2514.  04h    DWORD    (big-endian) object ID of trustee
  2515.  08h    BYTE    unused
  2516.  09h    BYTE    length of directory path (00h-FFh)
  2517.  0Ah  N BYTEs    directory path
  2518.  
  2519. Format of reply buffer:
  2520. Offset    Size    Description
  2521.  00h    WORD    (call) 0000h (no data returned)
  2522. --------N-21E2--SF0F-------------------------
  2523. INT 21 - Novell NetWare - DIRECTORY SERVICES - RENAME DIRECTORY
  2524.     AH = E2h subfn 0Fh
  2525.     DS:SI -> request buffer (see below)
  2526.     ES:DI -> reply buffer (see below)
  2527. Return: AL = status (00h,8Bh,9Bh,9Ch,9Eh) (see AH=E2h/SF=00h)
  2528. Notes:    this function is supported by NetWare 4.0+, Advanced NetWare 1.0+, and
  2529.       Alloy NTNX
  2530.     directories SYS:LOGIN, SYS:MAIL, and SYS:PUBLIC must not be renamed
  2531. SeeAlso: AH=56h,AH=E2h/SF=0Ah,AH=E2h/SF=0Bh
  2532.  
  2533. Format of request buffer:
  2534. Offset    Size    Description
  2535.  00h    WORD    length of following data (max 111h)
  2536.  02h    BYTE    0Fh (subfunction "Rename Directory")
  2537.  03h    BYTE    directory handle
  2538.  04h    BYTE    length of directory path (00h-FFh)
  2539.  05h  N BYTEs    directory path
  2540.     BYTE    length of new directory name (01h-0Eh)
  2541.       N BYTEs    new directory name
  2542.  
  2543. Format of reply buffer:
  2544. Offset    Size    Description
  2545.  00h    WORD    (call) 0000h (no data returned)
  2546. --------N-21E2--SF10-------------------------
  2547. INT 21 - Novell NetWare - FILE SERVICES - PURGE ERASED FILES
  2548.     AH = E2h subfn 10h
  2549.     DS:SI -> request buffer (see below)
  2550.     ES:DI -> reply buffer (see below)
  2551. Return: AL = status
  2552.         00h successful
  2553.         C6h no console rights
  2554. Desc:    purges files marked for deletion on the file server by the calling
  2555.       workstation
  2556. Note:    this function is supported by NetWare 4.0+, Advanced NetWare 1.0+, and
  2557.       Alloy NTNX
  2558. SeeAlso: AH=13h,AH=41h,AH=E2h/SF=11h,AH=E3h/SF=CEh,AX=F244h
  2559.  
  2560. Format of request buffer:
  2561. Offset    Size    Description
  2562.  00h    WORD    0001h (length of following data)
  2563.  02h    BYTE    10h (subfunction "Purge Erased Files")
  2564.  
  2565. Format of reply buffer:
  2566. Offset    Size    Description
  2567.  00h    WORD    (call) 0000h (no results returned)
  2568. --------N-21E2--SF11-------------------------
  2569. INT 21 - Novell NetWare - FILE SERVICES - RESTORE ERASED FILE
  2570.     AH = E2h subfn 11h
  2571.     DS:SI -> request buffer (see below)
  2572.     ES:DI -> reply buffer (see below)
  2573. Return: AL = status
  2574.         00h successful
  2575.         98h nonexistent volume
  2576.         FFh no more erased files
  2577. Desc:    restores one file marked for deletion which has not yet been purged
  2578. Note:    this function is supported by NetWare 4.0+, Advanced NetWare 1.0+, and
  2579.       Alloy NTNX
  2580. SeeAlso: AH=13h,AH=41h,AH=E2h/SF=10h,AH=E3h/SF=CEh,AX=F244h
  2581.  
  2582. Format of request buffer:
  2583. Offset    Size    Description
  2584.  00h    WORD    length of following data (max 13h)
  2585.  02h    BYTE    11h (subfunction "Restore Erased File")
  2586.  03h    BYTE    directory handle or 00h
  2587.  04h    BYTE    length of volume name
  2588.  05h  N BYTEs    volume name (including colon)
  2589. Note:    if both a directory handle and a volume name are specified, the volume
  2590.       name overrides the handle
  2591.  
  2592. Format of reply buffer:
  2593. Offset    Size    Description
  2594.  00h    WORD    (call) 001Eh (size of following results buffer)
  2595.  02h 15 BYTEs    ASCIZ name of erased file
  2596.  11h 15 BYTEs    ASCIZ name under which file was restored
  2597. --------N-21E2--SF12-------------------------
  2598. INT 21 - Novell NetWare - DIRECTORY SERVICES - ALLOC PERMANENT DIRECTORY HANDLE
  2599.     AH = E2h subfn 12h
  2600.     DS:SI -> request buffer (see below)
  2601.     ES:DI -> reply buffer (see below)
  2602. Return: AL = status (00h,98h,9Ch) (see AH=E2h/SF=00h)
  2603. Note:    this function is supported by NetWare 4.0+, Advanced NetWare 1.0+, and
  2604.       Alloy NTNX
  2605. SeeAlso: AH=E2h/SF=00h,AH=E2h/SF=13h,AH=E2h/SF=14h
  2606.  
  2607. Format of request buffer:
  2608. Offset    Size    Description
  2609.  00h    WORD    length of following data (max 103h)
  2610.  02h    BYTE    12h (subfunction "Alloc Permanent Directory Handle")
  2611.  03h    BYTE    directory handle
  2612.  04h    BYTE    drive ('A'-'Z')
  2613.  05h    BYTE    length of directory path
  2614.  06h  N BYTEs    directory path
  2615.  
  2616. Format of reply buffer:
  2617. Offset    Size    Description
  2618.  00h    WORD    (call) 0002h (size of following results buffer)
  2619.  02h    BYTE    new directory handle
  2620.  03h    BYTE    effective directory rights (see AH=E2h/SF=01h)
  2621. --------N-21E2--SF13-------------------------
  2622. INT 21 - Novell NetWare - DIRECTORY SERVICES - ALLOC TEMPORARY DIRECTORY HANDLE
  2623.     AH = E2h subfn 13h
  2624.     DS:SI -> request buffer (see below)
  2625.     ES:DI -> reply buffer (see AH=E2h/SF=12h)
  2626. Return: AL = status (00h,98h,9Ch) (see AH=E2h/SF=00h)
  2627. Notes:    this function is supported by NetWare 4.0+, Advanced NetWare 1.0+, and
  2628.       Alloy NTNX
  2629.     this call is the same as AH=E2h/SF=12h except that the directory handle
  2630.       will be automatically deallocated when the calling application
  2631.       executes an End of Job call (AH=D6h) or terminates
  2632. SeeAlso: AH=D6h,AH=E2h/SF=00h,AH=E2h/SF=12h,AH=E2h/SF=14h,AH=E2h/SF=16h
  2633.  
  2634. Format of request buffer:
  2635. Offset    Size    Description
  2636.  00h    WORD    length of following data (max 103h)
  2637.  02h    BYTE    13h (subfunction "Alloc Temporary Directory Handle")
  2638.  03h    BYTE    directory handle
  2639.  04h    BYTE    drive ('A'-'Z')
  2640.  05h    BYTE    length of directory path
  2641.  06h  N BYTEs    directory path
  2642. --------N-21E2--SF14-------------------------
  2643. INT 21 - Novell NetWare - DIRECTORY SERVICES - DEALLOCATE DIRECTORY HANDLE
  2644.     AH = E2h subfn 14h
  2645.     DS:SI -> request buffer (see below)
  2646.     ES:DI -> reply buffer (see below)
  2647. Return: AL = status (00h,9Bh) (see AH=E2h/SF=00h)
  2648. Note:    this function is supported by NetWare 4.0+, Advanced NetWare 1.0+, and
  2649.       Alloy NTNX
  2650. SeeAlso: AH=E2h/SF=12h,AH=E2h/SF=13h
  2651.  
  2652. Format of request buffer:
  2653. Offset    Size    Description
  2654.  00h    WORD    0002h (length of following data)
  2655.  02h    BYTE    14h (subfunction "Deallocate Directory Handle")
  2656.  03h    BYTE    directory handle
  2657.  
  2658. Format of reply buffer:
  2659. Offset    Size    Description
  2660.  00h    WORD    (call) 0000h (no returned data)
  2661. --------N-21E2--SF15-------------------------
  2662. INT 21 - Novell NetWare - DIRECTORY SERVICES - GET VOLUME INFO WITH HANDLE
  2663.     AH = E2h subfn 15h
  2664.     DS:SI -> request buffer (see below)
  2665.     ES:DI -> reply buffer (see below)
  2666. Return: AL = status
  2667.         00h successful
  2668. Note:    this function is supported by NetWare 4.0+, Advanced NetWare 1.0+, and
  2669.       Alloy NTNX
  2670. SeeAlso: AH=DAh,AH=E2h/SF=02h,AH=E2h/SF=06h,AH=E2h/SF=19h,AH=E3h/SF=E9h
  2671.  
  2672. Format of request buffer:
  2673. Offset    Size    Description
  2674.  00h    WORD    0002h (length of following data)
  2675.  02h    BYTE    15h (subfunction "Get Volume Info With Handle")
  2676.  03h    BYTE    directory handle
  2677.  
  2678. Format of reply buffer:
  2679. Offset    Size    Description
  2680.  00h    WORD    (call) 001Ch (length of following results buffer)
  2681.  02h    WORD    (big-endian) sectors per block
  2682.  04h    WORD    (big-endian) total blocks on volume
  2683.  06h    WORD    (big-endian) blocks available on volume
  2684.  08h    WORD    (big-endian) total directory slots
  2685.  0Ah    WORD    (big-endian) directory slots available
  2686.  0Ch 16 BYTEs    NUL-padded volume name
  2687.  1Ch    WORD    (big-endian) flag: volume removable if nonzero
  2688. --------N-21E2--SF16-------------------------
  2689. INT 21 u - Novell NetWare - DIRECTORY SERVICES - ALLOC SPECIAL TEMP DIR HANDLE
  2690.     AH = E2h subfn 16h
  2691.     DS:SI -> request buffer (see below)
  2692.     ES:DI -> reply buffer
  2693. Return: AL = status
  2694. Note:    this function is supported by Advanced NetWare 1.0+ and Alloy NTNX,
  2695.       but is not described in _NetWare_System_Calls--DOS_
  2696. SeeAlso: AH=E2h/SF=13h,AH=E2h/SF=14h
  2697.  
  2698. Format of request buffer:
  2699. Offset    Size    Description
  2700.  00h    WORD    length of following data
  2701.  02h    BYTE    16h (subfunction "Allocate Special Temporary Directory Handle")
  2702.     ???
  2703. --------N-21E2--SF17-------------------------
  2704. INT 21 - Novell NetWare - DIRECTORY SERVICES - SAVE DIRECTORY HANDLE
  2705.     AH = E2h subfn 17h
  2706.     DS:SI -> request buffer (see below)
  2707.     ES:DI -> reply buffer (see below)
  2708. Return: AL = status
  2709.         00h successful
  2710.         else network error code
  2711. Note:    this function is supported by Advanced NetWare 2.0+ and Alloy NTNX
  2712. SeeAlso: AH=E2h/SF=12h,AH=E2h/SF=17h
  2713.  
  2714. Format of request buffer:
  2715. Offset    Size    Description
  2716.  00h    WORD    0002h (length of following data)
  2717.  02h    BYTE    18h (subfunction "Restore Directory Handle")
  2718.  03h    BYTE    directory handle
  2719.  
  2720. Format of reply buffer:
  2721. Offset    Size    Description
  2722.  00h    WORD    (call) 0010h (length of following results buffer)
  2723.  02h 16    BYTEs    save buffer
  2724. --------N-21E2--SF18-------------------------
  2725. INT 21 - Novell NetWare - DIRECTORY SERVICES - RESTORE DIRECTORY HANDLE
  2726.     AH = E2h subfn 18h
  2727.     DS:SI -> request buffer (see below)
  2728.     ES:DI -> reply buffer (see below)
  2729. Return: AL = status
  2730.         00h successful
  2731.         else network error code
  2732. Desc:    restore a previously saved directory handle to reproduce an executing
  2733.       environment, possibly on a different execution site
  2734. Note:    this function is supported by Advanced NetWare 2.0+ and Alloy NTNX
  2735. SeeAlso: AH=E2h/SF=12h,AH=E2h/SF=17h
  2736.  
  2737. Format of request buffer:
  2738. Offset    Size    Description
  2739.  00h    WORD    0011h (length of following data)
  2740.  02h    BYTE    18h (subfunction "Restore Directory Handle")
  2741.  03h 16 BYTEs    save buffer
  2742.  
  2743. Format of reply buffer:
  2744. Offset    Size    Description
  2745.  00h    WORD    (call) 0002h (length of following results buffer)
  2746.  02h    BYTE    new directory handle
  2747.  03h    BYTE    effective rights (see AH=E2h/SF=03h)
  2748. --------N-21E2--SF19-------------------------
  2749. INT 21 - Novell NetWare - DIRECTORY SERVICES - SET DIRECTORY INFORMATION
  2750.     AH = E2h subfn 19h
  2751.     DS:SI -> request buffer (see below)
  2752.     ES:DI -> reply buffer (see below)
  2753. Return: AL = status (00h,9Bh,9Ch) (see AH=E2h/SF=00h)
  2754. Note:    this function is supported by Advanced NetWare 1.0+ and Alloy NTNX
  2755. SeeAlso: AH=E2h/SF=02h,AH=E2h/SF=0Fh
  2756.  
  2757. Format of request buffer:
  2758. Offset    Size    Description
  2759.  00h    WORD    length of following data (max 10Bh)
  2760.  02h    BYTE    19h (subfunction "Set Directory Information")
  2761.  03h    BYTE    directory handle
  2762.  04h    DWORD    (big-endian) date and time of creation
  2763.  08h    DWORD    (big-endian) object ID of owner
  2764.  0Ch    BYTE    maximum directory rightes (see AH=E2h/SF=03h)
  2765.  0Dh    BYTE    length of directory path
  2766.  0Eh  N BYTEs    directory path
  2767.  
  2768. Format of reply buffer:
  2769. Offset    Size    Description
  2770.  00h    WORD    (call) 0000h (no results returned)
  2771. --------N-21E2--SF1A-------------------------
  2772. INT 21 - Novell NetWare - FILE SERVER - GET PATH FROM DIRECTORY ENTRY
  2773.     AH = E2h subfn 1Ah
  2774.     DS:SI -> request buffer (see below)
  2775.     ES:DI -> reply buffer (see below)
  2776. Return: AL = status
  2777.         00h successful
  2778. Note:    this function is supported by NetWare 4.0+, Advanced NetWare 1.0+, and
  2779.       Alloy NTNX
  2780. SeeAlso: AH=E2h/SF=01h,AH=E2h/SF=06h,AH=E3h/SF=D7h
  2781.  
  2782. Format of request buffer:
  2783. Offset    Size    Description
  2784.  00h    WORD    0004h (length of following data)
  2785.  02h    BYTE    1Ah (subfunction "Get Path From Directory Entry")
  2786.  03h    BYTE    volume number (00h-1Fh)
  2787.  04h    WORD    (big-endian) directory entry number
  2788.  
  2789. Format of reply buffer:
  2790. Offset    Size    Description
  2791.  00h    WORD    (call) size of following results record (max 200h)
  2792.  02h 256 BYTEs    path
  2793. --------E-21E3-------------------------------
  2794. INT 21 - OS/286, OS/386 - ISSUE REAL INTERRUPT
  2795.     AH = E3h
  2796.     AL = interrupt number
  2797.     ???
  2798. Return: ???
  2799. Note:    protected mode only???
  2800. SeeAlso: AH=E1h"OS/286",INT 31/AX=0300h
  2801. --------T-21E3-------------------------------
  2802. INT 21 - DoubleDOS - ADD CHARACTER TO KEYBOARD BUFFER OF CURRENT JOB
  2803.     AH = E3h
  2804.     AL = character
  2805. Return: AL = 00h successful
  2806.          01h buffer full (128 characters)
  2807. SeeAlso: AH=E1h"DoubleDOS",AH=E2h"DoubleDOS",AH=E8h"DoubleDOS"
  2808. SeeAlso: AH=F3h"DoubleDOS"
  2809. --------N-21E3-------------------------------
  2810. INT 21 - Novell NetWare - CONNECTION CONTROL
  2811.     AH = E3h
  2812.     DS:SI -> request buffer (see below)
  2813.     ES:DI -> reply buffer (see below)
  2814. Return: AL = status
  2815.         00h successful
  2816.         else error code
  2817. Note:    supported by NetWare 4.0+, Advanced NetWare 1.0+, and Alloy NTNX
  2818. SeeAlso: AH=E3h/SF=0Ah,AH=E3h/SF=32h,AH=E3h/SF=64h,AH=E3h/SF=C8h
  2819.  
  2820. Format of request buffer:
  2821. Offset    Size    Description
  2822.  00h    WORD    length of following data
  2823.  02h    BYTE    subfunction number
  2824.         00h login
  2825.         01h change password
  2826.         02h map user to station set
  2827.         03h map object to number
  2828.         04h map number to object
  2829.         05h get station's logged information
  2830.         06h get station's root mask (obsolete)
  2831.         07h map group name to number
  2832.         08h map number to group name
  2833.         09h get memberset M of group G
  2834.     var    depends on subfunction
  2835. Notes:    the above subfunctions are not described in _NetWare_System_Calls--DOS_
  2836.     see separate entries below for other subfunctions
  2837.  
  2838. Format of reply buffer:
  2839. Offset    Size    Description
  2840.  00h    WORD    (call) length of following buffer space for results
  2841.     var    depends on subfunction
  2842.  
  2843. Format of object property:
  2844. Offset    Size    Description
  2845.  00h 1-16 BYTEs    property name
  2846.   N    BYTE    flags
  2847.         bit 0: property is dynamic
  2848.         bit 1: property is a set rather than an item
  2849.  N+1    BYTE    security levels (see below)
  2850.     ???
  2851.  
  2852. Names of well-known properties:
  2853.  ACCOUNT_BALANCE
  2854.  ACCOUNT_SERVERS
  2855.  GROUP_MEMBERS
  2856.  GROUPS_I'M_IN
  2857.  IDENTIFICATION        user's name
  2858.  LOGIN_CONTROL
  2859.  NET_ADDRESS
  2860.  OPERATORS
  2861.  PASSWORD
  2862.  SECURITY_EQUALS
  2863.  
  2864. Values for security levels:
  2865.  00h    "anyone" everyone may access
  2866.  01h    "logged" only logged-in clients may access
  2867.  02h    "object" only clients logged-in with object's name, type, and password
  2868.  03h    "supervisor" only clients logged-in with supervisor privileges
  2869.  04h    "NetWare" only NetWare may access
  2870. Note:    the above values are stored in a nybble; the high half-byte is write
  2871.       access and the low half-byte is read access
  2872.  
  2873. Values for object type:
  2874.  0000h    unknown
  2875.  0001h    user
  2876.  0002h    user group
  2877.  0003h    print queue
  2878.  0004h    file server
  2879.  0005h    job server
  2880.  0006h    gateway
  2881.  0007h    print server
  2882.  0008h    archive queue
  2883.  0009h    archive server
  2884.  000Ah    job queue
  2885.  000Bh    administration
  2886.  0026h    remote bridge server
  2887.  0047h    advertising print server
  2888.  0048h-8000h reserved
  2889.  FFFFh    wild (used only for finding objects)
  2890. --------N-21E3--SF0A-------------------------
  2891. INT 21 - Novell NetWare - CONNECTION SERVICES - ENTER LOGIN AREA
  2892.     AH = E3h subfn 0Ah
  2893.     DS:SI -> request buffer (see below)
  2894.     ES:DI -> reply buffer (see below)
  2895. Return: AL = status
  2896.         00h successful
  2897. Desc:    change the login directory for the calling workstation
  2898. Note:    this function is supported by NetWare 4.0+, Advanced NetWare 1.0+, and
  2899.       Alloy NTNX
  2900. SeeAlso: AH=D7h,AH=E3h/SF=14h
  2901.  
  2902. Format of request buffer:
  2903. Offset    Size    Description
  2904.  00h    WORD    length of following data (max 102h)
  2905.  02h    BYTE    0Ah (subfunction "Enter Login Area")
  2906.  03h    BYTE    number of local drives
  2907.  04h    BYTE    length of subdirectory name (00h-FFh)
  2908.  05h  N BYTEs    name of subdirectory under SYS:LOGIN where to find the login
  2909.         utility
  2910.  
  2911. Format of reply buffer:
  2912. Offset    Size    Description
  2913.  00h    WORD    (call) 0000h (no data returned)
  2914. --------N-21E3--SF0C-------------------------
  2915. INT 21 U - Novell Netware - VERIFY NETWORK SERIAL NUMBER
  2916.     AH = E3h subfn 0Ch
  2917.     DS:SI -> request buffer (see below)
  2918.     ES:DI -> reply buffer (see below)
  2919. Return: AL = status
  2920.         00h successful
  2921. Note:    if the network serial number to be verified is correct, the reply
  2922.       buffer will contain the corresponding application number
  2923. SeeAlso: AH=E3h/SF=12h
  2924.  
  2925. Format of request buffer:
  2926. Offset    Size    Description
  2927.  00h    WORD    0005h (length of following data)
  2928.  02h    BYTE    0Ch (subfunction "Verify Network Serial Number")
  2929.  03h    DWORD    (big-endian) network serial number to verify
  2930.  
  2931. Format of reply buffer:
  2932. Offset    Size    Description
  2933.  00h    WORD    (call) 0002h (size of following results buffer)
  2934.  02h    WORD    (big-endian) application number
  2935. --------N-21E3--SF0D-------------------------
  2936. INT 21 - Novell NetWare - MESSAGE SERVICES - LOG NETWORK MESSAGE
  2937.     AH = E3h subfn 0Dh
  2938.     DS:SI -> request buffer (see below)
  2939.     ES:DI -> reply buffer (see below)
  2940. Return: AL = status
  2941.         00h successful
  2942. Desc:    append a line to the default file server's NET$LOG.MSG file
  2943. Note:    this function is supported by NetWare 4.0+, Advanced NetWare 1.0+, and
  2944.       Alloy NTNX
  2945. SeeAlso: AH=E1h/SF=09h
  2946.  
  2947. Format of request buffer:
  2948. Offset    Size    Description
  2949.  00h    WORD    length of following data (max 52h)
  2950.  02h    BYTE    0Dh (subfunction "Log Network Message")
  2951.  03h    BYTE    length of message (01h-50h)
  2952.  04h  N BYTEs    message (no control characters or characters > 7Eh)
  2953. --------N-21E3--SF0E-------------------------
  2954. INT 21 - Novell NetWare - FILE SERVER - GET DISK UTILIZATION
  2955.     AH = E3h subfn 0Eh
  2956.     DS:SI -> request buffer (see below)
  2957.     ES:DI -> reply buffer (see below)
  2958. Return: AL = status
  2959.         00h successful
  2960.         98h nonexistent volume
  2961.         F2h not permitted to read object
  2962. Notes:    this function is supported by Advanced NetWare 2.1+
  2963.     the caller must have bindery object read privileges
  2964. SeeAlso: AH=E3h/SF=11h,AH=E3h/SF=D6h,AH=E3h/SF=D9h,AH=E3h/SF=E6h,AH=E3h/SF=E9h
  2965.  
  2966. Format of request buffer:
  2967. Offset    Size    Description
  2968.  00h    WORD    0005h (length of following data)
  2969.  02h    BYTE    0Eh (subfunction "Get Disk Utilization")
  2970.  03h    BYTE    volume number (00h-1Fh)
  2971.  04h    DWORD    (big-endian) object ID
  2972.  
  2973. Format of reply buffer:
  2974. Offset    Size    Description
  2975.  00h    WORD    (call) 000Bh (size of following results buffer)
  2976.  02h    BYTE    volume number (00h-1Fh)
  2977.  03h    DWORD    (big-endian) object ID
  2978.  07h    WORD    (big-endian) directories used by object
  2979.  09h    WORD    (big-endian) files created by object
  2980.  0Bh    WORD    (big-endian) disk blocks used by object-created files
  2981. --------N-21E3--SF0F-------------------------
  2982. INT 21 - Novell NetWare - FILE SERVICES - SCAN FILE INFORMATION
  2983.     AH = E3h subfn 0Fh
  2984.     DS:SI -> request buffer (see below)
  2985.     ES:DI -> reply buffer (see below)
  2986. Return: AL = status
  2987.         00h successful
  2988.         89h not permitted to search directory
  2989.         FFh no more matching files
  2990. Note:    this function is supported by Advanced NetWare 1.0+ and Alloy NTNX
  2991. SeeAlso: AH=B6h,AH=E3h/SF=10h
  2992.  
  2993. Format of request buffer:
  2994. Offset    Size    Description
  2995.  00h    WORD    length of following data (max 105h)
  2996.  02h    BYTE    0Fh (subfunction "Scan File Information")
  2997.  03h    WORD    (big-endian) sequence number
  2998.         FFFFh on first call
  2999.  05h    BYTE    directory handle or 00h
  3000.  06h    BYTE    search attributes (see AX=4301h)
  3001.  07h    BYTE    length of filespec
  3002.  08h  N BYTEs    ASCIZ uppercase filespec
  3003.  
  3004. Format of reply buffer:
  3005. Offset    Size    Description
  3006.  00h    WORD    (call) 005Eh (size of following results buffer)
  3007.  02h    WORD    next sequence number (place in request buffer for next call)
  3008.  04h 14 BYTEs    ASCIZ filename
  3009.  12h    BYTE    file attributes (see AX=4301h for format)
  3010.  13h    BYTE    extended file attributes (see AH=B6h for format)
  3011.  14h    DWORD    (big-endian) file size in bytes
  3012.  18h    WORD    (big-endian) file's creation date (see AX=5700h for format)
  3013.  1Ah    WORD    (big-endian) date of last access (see AX=5700h for format)
  3014.  1Ch    DWORD    (big-endian) date and time of last update (see AH=E2h/SF=02h)
  3015.  20h    DWORD    (big-endian) object ID of owner
  3016.  24h    DWORD    (big-endian) date and time last archived (see AH=E2h/SF=02h)
  3017.  28h 55 BYTEs    reserved
  3018. Note:    the official documentation erroneously lists the field at offset 04h as
  3019.       15 bytes and thus shifts the remaining fields by one byte
  3020. --------N-21E3--SF10-------------------------
  3021. INT 21 - Novell NetWare - FILE SERVICES - SET FILE INFORMATION
  3022.     AH = E3h subfn 10h
  3023.     DS:SI -> request buffer (see below)
  3024.     ES:DI -> reply buffer (see below)
  3025. Return: AL = status
  3026.         00h successful
  3027. Note:    this function is supported by Advanced NetWare 1.0+ and Alloy NTNX
  3028.     the caller must have modify privileges on the directory containing the
  3029.       file
  3030. SeeAlso: AH=B6h,AH=E3h/SF=0Fh
  3031.  
  3032. Format of request buffer:
  3033. Offset    Size    Description
  3034.  00h    WORD    length of following data (max 151h)
  3035.  02h    BYTE    10h (subfunction "Set File Information")
  3036.  03h    BYTE    file attributes (see AX=4301h for format)
  3037.  04h    BYTE    extended file attributes (see AH=B6h for format)
  3038.  05h  4 BYTEs    reserved
  3039.  09h    WORD    (big-endian) file's creation date (see AX=5700h for format) 
  3040.  0Bh    WORD    (big-endian) date of last access (see AX=5700h for format)
  3041.  0Dh    DWORD    (big-endian) date and time of last update (see AH=E2h/SF=02h)
  3042.  11h    DWORD    (big-endian) object ID of owner
  3043.  15h    DWORD    (big-endian) date and time last archived (see AH=E2h/SF=02h)
  3044.  19h 56 BYTEs    reserved
  3045.  51h    BYTE    directory handle or 00h
  3046.  52h    BYTE    search attributes (see AX=4301h for format)
  3047.  53h    BYTE    length of filename
  3048.  54h  N BYTEs    filename
  3049. Format of reply buffer:
  3050. Offset    Size    Description
  3051.  00h    WORD    (call) 0000h (no results returned)
  3052. --------N-21E3--SF11-------------------------
  3053. INT 21 - Novell NetWare - FILE SERVER - GET FILE SERVER INFORMATION
  3054.     AH = E3h subfn 11h
  3055.     DS:SI -> request buffer (see below)
  3056.     ES:DI -> reply buffer (see below)
  3057. Return: AL = status
  3058.         00h successful
  3059. Desc:    determine the version of software installed on the file server and
  3060.       how it is configured
  3061. Note:    this function is supported by Advanced NetWare 2.1+
  3062. SeeAlso: AH=E3h/SF=0Eh,AE3h/SF=12h,AH=E3h/SF=CDh,AH=E3h/SF=D3h,AH=E3h/SF=E7h
  3063. SeeAlso: AH=E7h
  3064.  
  3065. Format of request buffer:
  3066. Offset    Size    Description
  3067.  00h    WORD    0001h (length of following data)
  3068.  02h    BYTE    11h (subfunction "Get File Server Information")
  3069.  
  3070. Format of reply buffer:
  3071. Offset    Size    Description
  3072.  00h    WORD    (call) 0080h (size of following results buffer)
  3073.  02h 48 BYTEs    server's name
  3074.  32h    BYTE    NetWare version
  3075.  33h    BYTE    NetWare subversion (0-99)
  3076.  34h    WORD    (big-endian) number of connections supported
  3077.  36h    WORD    (big-endian) number of connections in use
  3078.  38h    WORD    (big-endian) maximum connected volumes
  3079. ---Advanced NetWare 2.1+ ---
  3080.  3Ah    BYTE    operating system revision number
  3081.  3Bh    BYTE    fault tolerance (SFT) level
  3082.  3Ch    BYTE    TTS level
  3083.  3Dh    WORD    (big-endian) maximum simultaneously-used connections
  3084.  3Fh    BYTE    accounting version
  3085.  40h    BYTE    VAP version
  3086.  41h    BYTE    queueing version
  3087.  42h    BYTE    print server version
  3088.  43h    BYTE    virtual console version
  3089.  44h    BYTE    security restrictions level
  3090.  45h    BYTE    internetwork bridge version
  3091.  46h 60 BYTEs    reserved
  3092. --------N-21E3--SF12--------------------
  3093. INT 21 - Novell NetWare - GET SERIAL NUMBER
  3094.     AH = E3h subfn 12h
  3095.     DS:SI -> request buffer (see below)
  3096.     ES:DI -> reply buffer (see below)
  3097. Return: AL = status
  3098.         00h successful
  3099. Desc:    return the serial number and application number for the software
  3100.       installed on the file server
  3101. Note:    this function is supported by Advanced Netware 2.1+
  3102. SeeAlso: AH=E3h/SF=0Ch,AH=E3h/SF=11h
  3103.  
  3104. Format of request buffer:
  3105. offset     size    description
  3106.  00h     WORD    0001h (length of following data)
  3107.  02h     BYTE    12h (subfunction "Get Serial Number")
  3108.  
  3109. Format of reply buffer:
  3110. offset     size    description
  3111.  00h     WORD    (call) 0006h (size of following results buffer)
  3112.  02h   4 BYTEs    (big-endian) Netware software serial number
  3113.  06h   2 BYTEs    (big-endian) Netware software application number
  3114. --------N-21E3--SF13-------------------------
  3115. INT 21 - Novell NetWare - CONNECTION SERVICES - GET INTERNET ADDRESS
  3116.     AH = E3h subfn 13h
  3117.     DS:SI -> request buffer (see below)
  3118.     ES:DI -> reply buffer (see below)
  3119. Return: AL = status
  3120.         00h successful
  3121. Note:    this function is supported by Advanced NetWare 1.0+ and Alloy NTNX
  3122. SeeAlso: AH=DCh"NetWare",AH=E3h/SF=16h,AH=EEh"NetWare"
  3123.  
  3124. Format of request buffer:
  3125. Offset    Size    Description
  3126.  00h    WORD    0002h (length of following data)
  3127.  02h    BYTE    13h (subfunction "Get Internet Address")
  3128.  03h    BYTE    logical connection number (01h-64h)
  3129.  
  3130. Format of reply buffer:
  3131. Offset    Size    Description
  3132.  00h    WORD    (call) 000Ch (length of following results buffer)
  3133.  02h  4 BYTEs    network number
  3134.  06h  6 BYTEs    physical node address
  3135.  0Ch  2 BYTEs    socket number
  3136. --------N-21E3--SF14-------------------------
  3137. INT 21 - Novell NetWare - CONNECTION SERVICES - LOGIN TO FILE SERVER
  3138.     AH = E3h subfn 14h
  3139.     DS:SI -> request buffer (see below)
  3140.     ES:DI -> reply buffer (see below)
  3141. Return: AL = status
  3142.         00h successful
  3143. Desc:    this function retrieves a list indicating the connection numbers under
  3144.       which a bindery object is logged into the default file server
  3145. Note:    this function is supported by Advanced NetWare 1.0+ and Alloy NTNX
  3146. SeeAlso: AH=D7h"NetWare",AH=F1h"NetWare"
  3147.  
  3148. Format of request buffer:
  3149. Offset    Size    Description
  3150.  00h    WORD    length of following data (max B3h)
  3151.  02h    BYTE    14h (subfunction "Login To File Server")
  3152.  03h    WORD    (big-endian) type of object
  3153.  05h    BYTE    length of object's name (01h-2Fh)
  3154.  06h  N BYTEs    object's name
  3155.     BYTE    length of password
  3156.       N BYTEs    password
  3157.  
  3158. Format of reply buffer:
  3159. Offset    Size    Description
  3160.  00h    WORD    (call) 0000h (no data returned)
  3161. --------N-21E3--SF15-------------------------
  3162. INT 21 - Novell NetWare - CONNECTION SERVICES - GET OBJECT CONNECTION NUMBERS
  3163.     AH = E3h subfn 15h
  3164.     DS:SI -> request buffer (see below)
  3165.     ES:DI -> reply buffer (see below)
  3166. Return: AL = status
  3167.         00h successful
  3168. Desc:    this function retrieves a list indicating the connection numbers under
  3169.       which a bindery object is logged into the default file server
  3170. Note:    this function is supported by Advanced NetWare 1.0+ and Alloy NTNX
  3171. SeeAlso: AH=DCh"NetWare",AH=E3h/SF=16h
  3172.  
  3173. Format of request buffer:
  3174. Offset    Size    Description
  3175.  00h    WORD    length of following data (max 33h)
  3176.  02h    BYTE    15h (subfunction "Get Object Connection Numbers")
  3177.  03h    WORD    (big-endian) type of object
  3178.  05h    BYTE    length of object's name (01h-2Fh)
  3179.  06h  N BYTEs    object's name
  3180.  
  3181. Format of reply buffer:
  3182. Offset    Size    Description
  3183.  00h    WORD    (call) length of following results buffer (max 65h)
  3184.  02h    BYTE    number of connections
  3185.  03h  N BYTEs    connection list
  3186. --------N-21E3--SF16-------------------------
  3187. INT 21 - Novell NetWare - CONNECTION SERVICES - GET CONNECTION INFORMATION
  3188.     AH = E3h subfn 16h
  3189.     DS:SI -> request buffer (see below)
  3190.     ES:DI -> reply buffer (see below)
  3191. Return: AL = status
  3192.         00h successful
  3193. Note:    this function is supported by Advanced NetWare 1.0+ and Alloy NTNX
  3194. SeeAlso: AH=D7h,AH=DCh"NetWare",AH=E3h/SF=14h
  3195.  
  3196. Format of request buffer:
  3197. Offset    Size    Description
  3198.  00h    WORD    0002h (length of following data)
  3199.  02h    BYTE    16h (subfunction "Get Connection Information")
  3200.  03h    BYTE    logical connection number (01h-64h)
  3201.  
  3202. Format of reply buffer:
  3203. Offset    Size    Description
  3204.  00h    WORD    (call) 003Eh (length of following results buffer)
  3205.  02h    DWORD    (big-endian) object ID for object logged in on the connection
  3206.         00000000h if no object logged in
  3207.  06h    WORD    (big-endian) type of object
  3208.  08h 48 BYTEs    name of object
  3209.  38h  7 BYTEs    login time (see below)
  3210. Note:    much of the Novell documentation incorrectly states the reply buffer
  3211.       length as 3Fh instead of 40h, which corresponds to a results length
  3212.       of 3Dh (61) bytes instead of the correct 3Eh (62) bytes
  3213.  
  3214. Format of login time:
  3215. Offset    Size    Description
  3216.  00h    BYTE    year (80-99 = 1980-1999, 00-79 = 2000-2079)
  3217.  01h    BYTE    month (1-12)
  3218.  02h    BYTE    day (1-31)
  3219.  03h    BYTE    hour (0-23)
  3220.  04h    BYTE    minute (0-59)
  3221.  05h    BYTE    second (0-59)
  3222.  06h    BYTE    day of week (0 = Sunday)
  3223. --------N-21E3--SF32-------------------------
  3224. INT 21 - Novell NetWare - BINDERY SERVICES - CREATE BINDERY OBJECT
  3225.     AH = E3h subfn 32h
  3226.     DS:SI -> request buffer (see below)
  3227.     ES:DI -> reply buffer (see below)
  3228. Return: AL = status (see below)
  3229. Note:    this function is supported by Advanced NetWare 1.0+ and Alloy NTNX
  3230. SeeAlso: AH=E3h/SF=33h,AH=E3h/SF=34h,AH=E3h/SF=38h,AH=E3h/SF=39h
  3231.  
  3232. Values for status:
  3233.  00h successful
  3234.  96h server out of memory
  3235.  EEh object already exists
  3236.  EFh invalid name
  3237.  F0h wildcard not allowed
  3238.  F1h invalid bindery security level
  3239.  F3h not permitted to rename object
  3240.  F4h not permitted to delete objects
  3241.  F5h not permitted to create objects
  3242.  FCh no such object
  3243.  FEh server bindery locked
  3244.  FFh bindery failure
  3245.  
  3246. Format of request buffer:
  3247. Offset    Size    Description
  3248.  00h    WORD    length of following data (max 35h)
  3249.  02h    BYTE    32h (subfunction "Create Bindery Object")
  3250.  03h    BYTE    object flag
  3251.         00h static
  3252.         01h dynamic
  3253.  04h    BYTE    object security levels
  3254.  05h    WORD    (big-endian) type of object
  3255.  07h    BYTE    length of object's name
  3256.  08h  N BYTEs    object's name
  3257.  
  3258. Format of reply buffer:
  3259. Offset    Size    Description
  3260.  00h    WORD    0000h (no data returned)
  3261. --------N-21E3--SF33-------------------------
  3262. INT 21 - Novell NetWare - BINDERY SERVICES - DELETE BINDERY OBJECT
  3263.     AH = E3h subfn 33h
  3264.     DS:SI -> request buffer (see below)
  3265.     ES:DI -> reply buffer (see below)
  3266. Return: AL = status (see AH=E3h/SF=32h)
  3267. Note:    this function is supported by Advanced NetWare 1.0+ and Alloy NTNX
  3268. SeeAlso: AH=E3h/SF=32h,AH=E3h/SF=34h
  3269.  
  3270. Format of request buffer:
  3271. Offset    Size    Description
  3272.  00h    WORD    length of following data (max 33h)
  3273.  02h    BYTE    33h (subfunction "Delete Bindery Object")
  3274.  03h    WORD    (big-endian) type of object
  3275.  05h    BYTE    length of object's name (01h-2Fh)
  3276.  06h  N BYTEs    object's name
  3277.  
  3278. Format of reply buffer:
  3279. Offset    Size    Description
  3280.  00h    WORD    (call) 0000h (no data returned)
  3281. --------N-21E3--SF34-------------------------
  3282. INT 21 - Novell NetWare - BINDERY SERVICES - RENAME BINDERY OBJECT
  3283.     AH = E3h subfn 34h
  3284.     DS:SI -> request buffer (see below)
  3285.     ES:DI -> reply buffer (see below)
  3286. Return: AL = status (see AH=E3h/SF=32h)
  3287. Note:    this function is supported by Advanced NetWare 1.0+ and Alloy NTNX
  3288. SeeAlso: AH=E3h/SF=32h,AH=E3h/SF=33h
  3289.  
  3290. Format of request buffer:
  3291. Offset    Size    Description
  3292.  00h    WORD    length of following data (max 63h)
  3293.  02h    BYTE    34h (subfunction "Rename Bindery Object")
  3294.  03h    WORD    (big-endian) type of object
  3295.  05h    BYTE    length of object's name (01h-2Fh)
  3296.  06h  N BYTEs    object's name
  3297.     BYTE    length of new name (01h-2Fh)
  3298.       N BYTEs    new name
  3299.  
  3300. Format of reply buffer:
  3301. Offset    Size    Description
  3302.  00h    WORD    (call) 0000h (no data returned)
  3303. --------N-21E3--SF35-------------------------
  3304. INT 21 - Novell NetWare - BINDERY SERVICES - GET BINDERY OBJECT ID
  3305.     AH = E3h subfn 35h
  3306.     DS:SI -> request buffer (see below)
  3307.     ES:DI -> reply buffer (see below)
  3308. Return: AL = status
  3309.         00h successful
  3310.         96h server out of memory
  3311.         FCh no such object
  3312.         FEh    server bindery locked
  3313.         FFh    bindery failure
  3314. Notes:    this function is supported by Advanced NetWare 1.0+ and Alloy NTNX
  3315.     the requesting workstation must be logged into the file server with
  3316.       read access to the bindery object
  3317. SeeAlso: AH=E3h/SF=36h,AH=E3h/SF=44h
  3318.  
  3319. Format of request buffer:
  3320. Offset    Size    Description
  3321.  00h    WORD    length of following data (max 33h)
  3322.  02h    BYTE    35h (subfunction "Get Bindery Object ID")
  3323.  03h    WORD    (big-endian) type of object
  3324.  05h    BYTE    length of object's name
  3325.  06h  N BYTEs    object's name
  3326.  
  3327. Format of reply buffer:
  3328. Offset    Size    Description
  3329.  00h    WORD    (call) 0036h (length of following buffer space)
  3330.  02h    DWORD    (big-endian) object ID
  3331.  06h    WORD    (big-endian) type of object
  3332.  08h 48 BYTEs    object name
  3333. --------N-21E3--SF36-------------------------
  3334. INT 21 - Novell NetWare - BINDERY SERVICES - GET BINDERY OBJECT NAME
  3335.     AH = E3h subfn 36h
  3336.     DS:SI -> request buffer (see below)
  3337.     ES:DI -> reply buffer (see below)
  3338. Return: AL = status (see below)
  3339. Notes:    this function is supported by Advanced NetWare 1.0+ and Alloy NTNX
  3340.     the requesting workstation must be logged into the file server with
  3341.       read access to the bindery object
  3342. SeeAlso: AH=E3h/SF=35h,AH=E3h/SF=44h
  3343.  
  3344. Values for status:
  3345.  00h successful
  3346.  96h server out of memory
  3347.  EFh invalid name
  3348.  F0h wildcard not allowed
  3349.  FCh no such object
  3350.  FEh server bindery locked
  3351.  FFh bindery failure
  3352.  
  3353. Format of request buffer:
  3354. Offset    Size    Description
  3355.  00h    WORD    0005h (length of following data)
  3356.  02h    BYTE    36h (subfunction "Get Bindery Object Name")
  3357.  03h    DWORD    (big-endian) object ID
  3358.  
  3359. Format of reply buffer:
  3360. Offset    Size    Description
  3361.  00h    WORD    (call) 0036h (length of following buffer space)
  3362.  02h    DWORD    (big-endian) object ID
  3363.  06h    WORD    (big-endian) type of object
  3364.  08h 48 BYTEs    object name
  3365. --------N-21E3--SF37-------------------------
  3366. INT 21 - Novell NetWare - BINDERY SERVICES - SCAN BINDERY OBJECT
  3367.     AH = E3h subfn 37h
  3368.     DS:SI -> request buffer (see below)
  3369.     ES:DI -> reply buffer (see below)
  3370. Return: AL = status (see AH=E3h/SF=36h)
  3371. Notes:    this function is supported by Advanced NetWare 1.0+ and Alloy NTNX
  3372.     the requesting workstation must be logged into the file server with
  3373.       read access to the bindery object
  3374. SeeAlso: AH=E3h/SF=32h,AH=E3h/SF=33h,AH=E3h/SF=38h,AH=E3h/SF=3Ch
  3375.  
  3376. Format of request buffer:
  3377. Offset    Size    Description
  3378.  00h    WORD    length of following data (max 37h)
  3379.  02h    BYTE    37h (subfunction "Scan Bindery Object")
  3380.  03h    DWORD    (big-endian) last object ID
  3381.  07h    WORD    (big-endian) type of object
  3382.  09h      BYTE    length of object's name
  3383.  0Ah  N BYTEs    object's name
  3384.  
  3385. Format of reply buffer:
  3386. Offset    Size    Description
  3387.  00h    WORD    (call) 0039h (length of following buffer space)
  3388.  02h    DWORD    (big-endian) object ID
  3389.         FFFFFFFFh for first call
  3390.  06h    WORD    (big-endian) type of object
  3391.  08h 48 BYTEs    object name (counted string)
  3392.  38h    BYTE    object flag (00h static, 01h dynamic)
  3393.  39h    BYTE    object's security levels
  3394.  3Ah    BYTE    object properties flag (00h no, FFh yes)
  3395. --------N-21E3--SF38-------------------------
  3396. INT 21 - Novell NetWare - BINDERY SERVICES - CHANGE BINDERY OBJECT SECURITY
  3397.     AH = E3h subfn 38h
  3398.     DS:SI -> request buffer (see below)
  3399.     ES:DI -> reply buffer (see below)
  3400. Return: AL = status
  3401.         00h successful
  3402.         96h server out of memory
  3403.         F0h    wildcard not allowed
  3404.         F1h invalid bindery security level
  3405.         FBh    no such property
  3406.         FCh    no such object
  3407.         FEh    server bindery locked
  3408.         FFh    bindery failure
  3409. Note:    this function is supported by Advanced NetWare 1.0+ and Alloy NTNX
  3410. SeeAlso: AH=E3h/SF=32h,AH=E3h/SF=3Bh
  3411.  
  3412. Format of request buffer:
  3413. Offset    Size    Description
  3414.  00h    WORD    length of following data (max 34h)
  3415.  02h    BYTE    38h (subfunction "Change Bindery Object Security")
  3416.  03h    BYTE    new security levels
  3417.  04h    WORD    (big-endian) type of object
  3418.  06h    BYTE    length of object's name (01h-2Fh)
  3419.  07h  N BYTEs    object name
  3420.  
  3421. Format of reply buffer:
  3422. Offset    Size    Description
  3423.  00h    WORD    (call) 0000h (no data returned)
  3424. --------N-21E3--SF39-------------------------
  3425. INT 21 - Novell NetWare - BINDERY SERVICES - CREATE PROPERTY
  3426.     AH = E3h subfn 39h
  3427.     DS:SI -> request buffer (see below)
  3428.     ES:DI -> reply buffer (see below)
  3429. Return: AL = status (see below)
  3430. Note:    this function is supported by Advanced NetWare 1.0+ and Alloy NTNX
  3431. SeeAlso: AH=E3h/SF=32h,AH=E3h/SF=3Bh
  3432.  
  3433. Values for status:
  3434.  00h successful
  3435.  96h server out of memory
  3436.  EDh property already exists
  3437.  EFh invalid name
  3438.  F0h wildcard not allowed
  3439.  F1h invalid bindery security level
  3440.  F6h not permitted to delete properties
  3441.  F7h not permitted to create properties
  3442.  FBh no such property
  3443.  FCh no such object
  3444.  FEh server bindery locked
  3445.  FFh bindery failure
  3446.  
  3447. Format of request buffer:
  3448. Offset    Size    Description
  3449.  00h    WORD    length of following data (max 45h)
  3450.  02h    BYTE    39h (subfunction "Create Property")
  3451.  03h    WORD    (big-endian) type of object
  3452.  05h    BYTE    length of object's name (01h-2Fh)
  3453.  06h  N BYTEs    object's name
  3454.     BYTE    property flags
  3455.     BYTE    property security levels
  3456.     BYTE    length of property's name (01h-0Fh)
  3457.       N BYTEs    property's name
  3458.  
  3459. Format of reply buffer:
  3460. Offset    Size    Description
  3461.  00h    WORD    (call) 0000h (no data returned)
  3462. --------N-21E3--SF3A-------------------------
  3463. INT 21 - Novell NetWare - BINDERY SERVICES - DELETE PROPERTY
  3464.     AH = E3h subfn 3Ah
  3465.     DS:SI -> request buffer (see below)
  3466.     ES:DI -> reply buffer (see below)
  3467. Return: AL = status (see AH=E3h/SF=39h)
  3468. Note:    this function is supported by Advanced NetWare 1.0+ and Alloy NTNX
  3469. SeeAlso: AH=E3h/SF=32h,AH=E3h/SF=39h
  3470.  
  3471. Format of request buffer:
  3472. Offset    Size    Description
  3473.  00h    WORD    length of following data (max 43h)
  3474.  02h    BYTE    3Ah (subfunction "Delete Property")
  3475.  03h    WORD    (big-endian) type of object
  3476.  05h    BYTE    length of object's name (01h-2Fh)
  3477.  06h  N BYTEs    object's name
  3478.     BYTE    length of property's name (01h-0Fh)
  3479.       N BYTEs    property's name
  3480.  
  3481. Format of reply buffer:
  3482. Offset    Size    Description
  3483.  00h    WORD    (call) 0000h (no data returned)
  3484. --------N-21E3--SF3B-------------------------
  3485. INT 21 - Novell NetWare - BINDERY SERVICES - CHANGE PROPERTY SECURITY
  3486.     AH = E3h subfn 3Bh
  3487.     DS:SI -> request buffer (see below)
  3488.     ES:DI -> reply buffer (see below)
  3489. Return: AL = status
  3490.         00h successful
  3491.         96h server out of memory
  3492.         F0h    wildcard not allowed
  3493.         F1h invalid bindery security level
  3494.         FBh    no such property
  3495.         FCh    no such object
  3496.         FEh    server bindery locked
  3497.         FFh    bindery failure
  3498. Note:    this function is supported by Advanced NetWare 1.0+ and Alloy NTNX
  3499. SeeAlso: AH=E3h/SF=38h
  3500.  
  3501. Format of request buffer:
  3502. Offset    Size    Description
  3503.  00h    WORD    length of following data (max 44h)
  3504.  02h    BYTE    3Bh (subfunction "Change Property Security")
  3505.  03h    WORD    (big-endian) type of object
  3506.  05h    BYTE    length of object's name (01h-2Fh)
  3507.  06h  N BYTEs    object name
  3508.     BYTE    new property security levels
  3509.     BYTE    length of property's name
  3510.       N BYTEs    property name
  3511.  
  3512. Format of reply buffer:
  3513. Offset    Size    Description
  3514.  00h    WORD    (call) 0000h (no data returned)
  3515. --------N-21E3--SF3C-------------------------
  3516. INT 21 - Novell NetWare - BINDERY SERVICES - SCAN PROPERTY
  3517.     AH = E3h subfn 3Ch
  3518.     DS:SI -> request buffer (see below)
  3519.     ES:DI -> reply buffer (see below)
  3520. Return: AL = status (see below)
  3521. Note:    this function is supported by Advanced NetWare 1.0+ and Alloy NTNX
  3522. SeeAlso: AH=E3h/SF=37h,AH=E3h/SF=3Bh
  3523.  
  3524. Values for status:
  3525.  00h    successful
  3526.  96h    server out of memory
  3527.  F1h    invalid bindery security level
  3528.  FBh    no such property
  3529.  FCh    no such object
  3530.  FEh    server bindery locked
  3531.  FFh    bindery failure
  3532.  
  3533. Format of request buffer:
  3534. Offset    Size    Description
  3535.  00h    WORD    length of following data (max 47h)
  3536.  02h    BYTE    3Ch (subfunction "Scan Property")
  3537.  03h    WORD    (big-endian) type of object
  3538.  05h    BYTE    length of object's name (01h-2Fh)
  3539.  06h  N BYTEs    object name
  3540.     DWORD    (big-endian) sequence number
  3541.         FFFFFFFFh for first call
  3542.     BYTE    length of property's name (01h-0Fh)
  3543.       N BYTEs    property's name
  3544.  
  3545. Format of reply buffer:
  3546. Offset    Size    Description
  3547.  00h    WORD    (call) 0018h (length of following results buffer)
  3548.  02h 16 BYTEs    property name
  3549.  12h    BYTE    property flags
  3550.  13h    BYTE    property security levels
  3551.  14h    DWORD    (big-endian) sequence number
  3552.  18h    BYTE    property value flag (00h no, FFh yes)
  3553.  19h    BYTE    more properties (00h no, FFh yes)
  3554. --------N-21E3--SF3D-------------------------
  3555. INT 21 - Novell NetWare - BINDERY SERVICES - READ PROPERTY VALUE
  3556.     AH = E3h subfn 3Dh
  3557.     DS:SI -> request buffer (see below)
  3558.     ES:DI -> reply buffer (see below)
  3559. Return: AL = status (see below)
  3560. Desc:    retrieve one 128-byte segment of the specified property's value
  3561. Note:    this function is supported by Advanced NetWare 1.0+ and Alloy NTNX
  3562. SeeAlso: AH=E3h/SF=39h,AH=E3h/SF=3Ch,AH=E3h/SF=3Eh
  3563.  
  3564. Values for status:
  3565.  00h successful
  3566.  96h server out of memory
  3567.  E8h not item property
  3568.  ECh no such segment
  3569.  F0h wildcard not allowed
  3570.  F1h invalid bindery security level
  3571.  F8h not permitted to write property
  3572.  F9h not permitted to read property
  3573.  FBh no such property
  3574.  FCh no such object
  3575.  FEh server bindery locked
  3576.  FFh bindery failure
  3577.  
  3578. Format of request buffer:
  3579. Offset    Size    Description
  3580.  00h    WORD    length of following data (max 44h)
  3581.  02h    BYTE    3Dh (subfunction "Read Property Value")
  3582.  03h    WORD    (big-endian) type of object
  3583.  05h    BYTE    length of object's name (01h-2Fh)
  3584.  06h  N BYTEs    object name
  3585.     BYTE    segment number (01h on first call, increment until done)
  3586.     BYTE    length of property's name (01h-0Fh)
  3587.       N BYTEs    property name
  3588.  
  3589. Format of reply buffer:
  3590. Offset    Size    Description
  3591.  00h    WORD    (call) 0082h (length of following results buffer)
  3592.  02h 128 BYTEs    property's value
  3593.  82h    BYTE    more segments (00h no, FFh yes)
  3594.  83h    BYTE    property's flags
  3595. --------N-21E3--SF3E-------------------------
  3596. INT 21 - Novell NetWare - BINDERY SERVICES - WRITE PROPERTY VALUE
  3597.     AH = E3h subfn 3Eh
  3598.     DS:SI -> request buffer (see below)
  3599.     ES:DI -> reply buffer (see below)
  3600. Return: AL = status (see AH=E3h/SF=3Dh)
  3601. Note:    this function is supported by Advanced NetWare 1.0+ and Alloy NTNX
  3602. SeeAlso: AH=E3h/SF=39h,AH=E3h/SF=3Ch,AH=E3h/SF=3Eh
  3603.  
  3604. Format of request buffer:
  3605. Offset    Size    Description
  3606.  00h    WORD    length of following data (max C5h)
  3607.  02h    BYTE    3Eh (subfunction "Write Property Value")
  3608.  03h    WORD    (big-endian) type of object
  3609.  05h    BYTE    length of object's name (01h-2Fh)
  3610.  06h  N BYTEs    object name
  3611.     BYTE    segment number (01h on first call, increment until done)
  3612.     BYTE    erase remaining segments (00h no, FFh yes)
  3613.     BYTE    length of property's name (01h-0Fh)
  3614.       N BYTEs    property name
  3615.     128 BYTEs    property value segment
  3616.  
  3617. Format of reply buffer:
  3618. Offset    Size    Description
  3619.  00h    WORD    (call) 0000h (no data returned)
  3620. --------N-21E3--SF3F-------------------------
  3621. INT 21 - Novell NetWare - BINDERY SERVICES - VERIFY BINDERY OBJECT PASSWORD
  3622.     AH = E3h subfn 3Fh
  3623.     DS:SI -> request buffer (see below)
  3624.     ES:DI -> reply buffer (see below)
  3625. Return: AL = status (see below)
  3626. Note:    this function is supported by Advanced NetWare 1.0+ and Alloy NTNX
  3627. SeeAlso: AH=E3h/SF=40h
  3628.  
  3629. Values for status:
  3630.  00h successful
  3631.  96h server out of memory
  3632.  F0h wildcard not allowed
  3633.  FBh no such property
  3634.  FCh no such object
  3635.  FEh server bindery locked
  3636.  FFh bindery failure: no such object, bad password, no password for object,
  3637.              or invalid old password
  3638.  
  3639. Format of request buffer:
  3640. Offset    Size    Description
  3641.  00h    WORD    length of following data (max 133h)
  3642.  02h    BYTE    3Fh (subfunction "Verify Bindery Object Password")
  3643.  03h    WORD    (big-endian) type of object
  3644.  05h    BYTE    length of object's name (01h-2Fh)
  3645.  06h  N BYTEs    object name
  3646.     BYTE    length of password (00h-7Fh)
  3647.       N BYTEs    password
  3648.  
  3649. Format of reply buffer:
  3650. Offset    Size    Description
  3651.  00h    WORD    (call) 0000h (no data returned)
  3652. --------N-21E3--SF40-------------------------
  3653. INT 21 - Novell NetWare - BINDERY SERVICES - CHANGE BINDERY OBJECT PASSWORD
  3654.     AH = E3h subfn 40h
  3655.     DS:SI -> request buffer (see below)
  3656.     ES:DI -> reply buffer (see below)
  3657. Return: AL = status (see AH=E3h/SF=3Fh)
  3658. Note:    this function is supported by Advanced NetWare 1.0+ and Alloy NTNX
  3659. SeeAlso: AH=E3h/SF=3Fh,AH=E3h/SF=41h
  3660.  
  3661. Format of request buffer:
  3662. Offset    Size    Description
  3663.  00h    WORD    length of following data (max 133h)
  3664.  02h    BYTE    40h (subfunction "Change Bindery Object Password")
  3665.  03h    WORD    (big-endian) type of object
  3666.  05h    BYTE    length of object's name (01h-2Fh)
  3667.  06h  N BYTEs    object name
  3668.     BYTE    length of old password (00h-7Fh)
  3669.       N BYTEs    old password
  3670.     BYTE    length of new password (00h-7Fh)
  3671.       N BYTEs    new password
  3672.  
  3673. Format of reply buffer:
  3674. Offset    Size    Description
  3675.  00h    WORD    (call) 0000h (no data returned)
  3676. --------N-21E3--SF41-------------------------
  3677. INT 21 - Novell NetWare - BINDERY SERVICES - ADD BINDERY OBJECT TO SET
  3678.     AH = E3h subfn 41h
  3679.     DS:SI -> request buffer (see below)
  3680.     ES:DI -> reply buffer (see below)
  3681. Return: AL = status (see below)
  3682. Desc:    add the specified object to a set property
  3683. Note:    this function is supported by Advanced NetWare 1.0+ and Alloy NTNX
  3684. SeeAlso: AH=E3h/SF=40h,AH=E3h/SF=42h,AH=E3h/SF=43h
  3685.  
  3686. Values for status:
  3687.  00h successful
  3688.  96h server out of memory
  3689.  E9h member already exists
  3690.  EAh member does not exist
  3691.  EBh not a group property
  3692.  F0h wildcard not allowed
  3693.  F8h can't write property
  3694.  F9h not permitted to read property
  3695.  FBh no such property
  3696.  FCh no such object
  3697.  FEh server bindery locked
  3698.  FFh bindery failure
  3699.  
  3700. Format of request buffer:
  3701. Offset    Size    Description
  3702.  00h    WORD    length of following data (max 75h)
  3703.  02h    BYTE    41h (subfunction "Add Bindery Object to Set")
  3704.  03h    WORD    (big-endian) type of object
  3705.  05h    BYTE    length of object's name
  3706.  06h  N BYTEs    object name
  3707.     BYTE    length of property name (01h-0Fh)
  3708.       N BYTEs    property name
  3709.     WORD    (big-endian) type of member object
  3710.     BYTE    length of member object's name
  3711.       N BYTEs    member object's name
  3712.  
  3713. Format of reply buffer:
  3714. Offset    Size    Description
  3715.  00h    WORD    (call) 0000h (no data returned)
  3716. --------N-21E3--SF42-------------------------
  3717. INT 21 - Novell NetWare - BINDERY SERVICES - DELETE BINDERY OBJECT FROM SET
  3718.     AH = E3h subfn 42h
  3719.     DS:SI -> request buffer (see below)
  3720.     ES:DI -> reply buffer (see below)
  3721. Return: AL = status (see AH=E3h/SF=41h)
  3722. Desc:    delete the specified object from a set property
  3723. Note:    this function is supported by Advanced NetWare 1.0+ and Alloy NTNX
  3724. SeeAlso: AH=E3h/SF=40h,AH=E3h/SF=42h,AH=E3h/SF=43h
  3725.  
  3726. Format of request buffer:
  3727. Offset    Size    Description
  3728.  00h    WORD    length of following data (max 75h)
  3729.  02h    BYTE    42h (subfunction "Delete Bindery Object from Set")
  3730.  03h    WORD    (big-endian) type of object
  3731.  05h    BYTE    length of object's name
  3732.  06h  N BYTEs    object name
  3733.     BYTE    length of property name (01h-0Fh)
  3734.       N BYTEs    property name
  3735.     WORD    (big-endian) type of member object
  3736.     BYTE    length of member object's name
  3737.       N BYTEs    member object's name
  3738.  
  3739. Format of reply buffer:
  3740. Offset    Size    Description
  3741.  00h    WORD    (call) 0000h (no data returned)
  3742. --------N-21E3--SF43-------------------------
  3743. INT 21 - Novell NetWare - BINDERY SERVICES - IS BINDERY OBJECT IN SET
  3744.     AH = E3h subfn 43h
  3745.     DS:SI -> request buffer (see below)
  3746.     ES:DI -> reply buffer (see below)
  3747. Return: AL = status (see AH=E3h/SF=41h)
  3748. Desc:    determine whether the specified object is a member of the given set
  3749.       property
  3750. Notes:    this function is supported by Advanced NetWare 1.0+ and Alloy NTNX
  3751.     the caller must have read access to the property
  3752. SeeAlso: AH=E3h/SF=41h,AH=E3h/SF=42h
  3753.  
  3754. Format of request buffer:
  3755. Offset    Size    Description
  3756.  00h    WORD    length of following data (max 75h)
  3757.  02h    BYTE    43h (subfunction "Is Bindery Object In Set")
  3758.  03h    WORD    (big-endian) type of object
  3759.  05h    BYTE    length of object's name
  3760.  06h  N BYTEs    object's name
  3761.     BYTE    length of property's name
  3762.       N BYTEs    property's name
  3763.     WORD    (big-endian) type of member object
  3764.     BYTE    length of member object's name
  3765.       N BYTEs    member object's name
  3766.  
  3767. Format of reply buffer:
  3768. Offset    Size    Description
  3769.  00h    WORD    (call) 0000h (no data returned)
  3770. --------N-21E3--SF44-------------------------
  3771. INT 21 - Novell NetWare - BINDERY SERVICES - CLOSE BINDERY
  3772.     AH = E3h subfn 44h
  3773.     DS:SI -> request buffer (see below)
  3774.     ES:DI -> reply buffer (see below)
  3775. Return: AL = status
  3776.         00h successful
  3777. Note:    this function is supported by Advanced NetWare 1.0+ and Alloy NTNX
  3778. SeeAlso: AH=E3h/SF=45h
  3779.  
  3780. Format of request buffer:
  3781. Offset    Size    Description
  3782.  00h    WORD    0001h (length of following data)
  3783.  02h    BYTE    44h (subfunction "Close Bindery")
  3784.  
  3785. Format of reply buffer:
  3786. Offset    Size    Description
  3787.  00h    WORD    (call) 0000h (no data returned)
  3788. --------N-21E3--SF45-------------------------
  3789. INT 21 - Novell NetWare - BINDERY SERVICES - OPEN BINDERY
  3790.     AH = E3h subfn 45h
  3791.     DS:SI -> request buffer (see below)
  3792.     ES:DI -> reply buffer (see below)
  3793. Return: AL = status
  3794.         00h successful
  3795. Notes:    this function is supported by Advanced NetWare 1.0+ and Alloy NTNX
  3796.     the bindery may only be opened by the supervisor or an object with
  3797.       equivalent privileges
  3798. SeeAlso: AH=E3h/SF=44h
  3799.  
  3800. Format of request buffer:
  3801. Offset    Size    Description
  3802.  00h    WORD    0001h (length of following data)
  3803.  02h    BYTE    45h (subfunction "Open Bindery")
  3804.  
  3805. Format of reply buffer:
  3806. Offset    Size    Description
  3807.  00h    WORD    (call) 0000h (no data returned)
  3808. --------N-21E3--SF46-------------------------
  3809. INT 21 - Novell NetWare - BINDERY SERVICES - GET BINDERY ACCESS LEVEL
  3810.     AH = E3h subfn 46h
  3811.     DS:SI -> request buffer (see below)
  3812.     ES:DI -> reply buffer (see below)
  3813. Return: AL = status
  3814.         00h successful
  3815. Note:    this function is supported by Advanced NetWare 1.0+ and Alloy NTNX
  3816.  
  3817. Format of request buffer:
  3818. Offset    Size    Description
  3819.  00h    WORD    0001h (length of following data)
  3820.  02h    BYTE    46h (subfunction "Get Bindery Access Level")
  3821.  
  3822. Format of reply buffer:
  3823. Offset    Size    Description
  3824.  00h    WORD    0005h (length of following buffer)
  3825.  02h    BYTE    security levels
  3826.  03h    DWORD    (big-endian) object ID
  3827. --------N-21E3--SF47-------------------------
  3828. INT 21 - Novell NetWare - DIRECTORY SERVICES - SCAN BINDERY OBJ TRUSTEE PATHS
  3829.     AH = E3h subfn 47h
  3830.     DS:SI -> request buffer (see below)
  3831.     ES:DI -> reply buffer (see below)
  3832. Return: AL = status
  3833.         00h successful
  3834.         96h server out of memory
  3835.         F0h wildcard not allowed
  3836.         F1h invalid bindery security level
  3837.         FCh no such object
  3838.         FEh server bindery locked
  3839.         FFh bindery failure
  3840. Desc:    iterate through the directories to which an object is a trustee
  3841. Note:    this function is supported by Advanced NetWare 1.0+ and Alloy NTNX
  3842. SeeAlso: AH=E2h/SF=0Ch,AH=E2h/SF=0Dh,AH=E2h/SF=0Eh
  3843.  
  3844. Format of request buffer:
  3845. Offset    Size    Description
  3846.  00h    WORD    0008h (length of following data)
  3847.  02h    BYTE    47h (subfunction "Scan Bindery Object Trustee Paths")
  3848.  03h    BYTE    volume number (00h-1Fh)
  3849.  04h    WORD    (big-endian) last sequence number (00h on first call)
  3850.  06h    DWORD    (big-endian) object ID
  3851.  
  3852. Format of reply buffer:
  3853. Offset    Size    Description
  3854.  00h    WORD    (call) length of following results buffer (max 107h)
  3855.  02h    WORD    (big-endian) next sequence number
  3856.  04h    DWORD    (big-endian) object ID
  3857.  08h    BYTE    trustee directory rights (see AH=E2h/SF=03h)
  3858.  09h    BYTE    length fo trustee path
  3859.  0Ah  N BYTEs    trustee path
  3860. --------N-21E3--SF64-------------------------
  3861. INT 21 - Novell NetWare - QUEUE SERVICES - CREATE QUEUE
  3862.     AH = E3h subfn 64h
  3863.     DS:SI -> request buffer (see below)
  3864.     ES:DI -> reply buffer (see below)
  3865. Return: AL = status (00h,96h,99h,9Bh,9Ch,EDh-F1h,F5h,F7h,FCh,FEh,FFh)
  3866.         (see below)
  3867. Notes:    this function is supported by Advanced NetWare 2.1+
  3868.     caller must be on a workstation with supervisor privileges
  3869. SeeAlso: AH=E3h/SF=65h,AH=E3h/SF=66h,AH=E3h/SF=68h,AH=E3h/SF=6Bh
  3870.  
  3871. Values for status:
  3872.  00h    successful
  3873.  96h    server out of memory
  3874.  99h    directory full
  3875.  9Bh    invalid directory handle
  3876.  9Ch    invalid path
  3877.  D0h    queue error
  3878.  D1h    no such queue
  3879.  D2h    no server for queue
  3880.  D3h    no queue rights
  3881.  D4h    queue full
  3882.  D5h    no queue job
  3883.  D6h    no job rights
  3884.  D7h    queue servicing error
  3885.  D9h    station is not a server
  3886.  DAh    queue halted
  3887.  DBh    too many queue servers
  3888.  EDh    property already exists
  3889.  EEh    object already exists
  3890.  EFh    invalid name
  3891.  F0h    wildcard not allowed
  3892.  F1h    invalid bindery security level
  3893.  F5h    not permitted to create object
  3894.  F7h    not permitted to create property
  3895.  FCh    no such object
  3896.  FEh    server bindery locked
  3897.  FFh    bindery failure
  3898.  
  3899. Format of request buffer:
  3900. Offset    Size    Description
  3901.  00h    WORD    length of following data (max ABh)
  3902.  02h    BYTE    64h (subfunction "Create Queue")
  3903.  03h    WORD    (big-endian) queue type
  3904.  05h    BYTE    length of queue's name (01h-2Fh)
  3905.  06h  N BYTEs    queue's name
  3906.     BYTE    directory handle or 00h
  3907.     BYTE    length of path name (01h-76h)
  3908.       N BYTEs    path name of directory in which to create queue subdirectory
  3909.  
  3910. Format of reply buffer:
  3911. Offset    Size    Description
  3912.  00h    WORD    (call) 0004h (size of following results buffer)
  3913.  02h    DWORD    (big-endian) object ID of queue
  3914. --------N-21E3--SF65-------------------------
  3915. INT 21 - Novell NetWare - QUEUE SERVICES - DESTROY QUEUE
  3916.     AH = E3h subfn 65h
  3917.     DS:SI -> request buffer (see below)
  3918.     ES:DI -> reply buffer (see below)
  3919. Return: AL = status (00h,96h,9Ch,D0h,D1h,FFh) (see also AH=E3h/SF=64h)
  3920.         FFh hardware failure
  3921. Desc:    abort all active jobs, detach all job servers, remove all job entries,
  3922.       delete all job files, remove the queue object and its properties
  3923.       from the bindery, and delete the queue's subdirectory
  3924. Notes:    this function is supported by Advanced NetWare 2.1+
  3925.     caller must have SUPERVISOR privileges
  3926. SeeAlso: AH=E3h/SF=64h,AH=E3h/SF=66h,AH=E3h/SF=68h,AH=E3h/SF=6Ah,AH=E3h/SF=70h
  3927.  
  3928. Format of request buffer:
  3929. Offset    Size    Description
  3930.  00h    WORD    0005h (length of following data)
  3931.  02h    BYTE    65h (subfunction "Destroy Queue")
  3932.  03h    DWORD    (big-endian) object ID of queue
  3933.  
  3934. Format of reply buffer:
  3935. Offset    Size    Description
  3936.  00h    WORD    (call) 0000h (no results returned)
  3937. --------N-21E3--SF66-------------------------
  3938. INT 21 - Novell NetWare - QUEUE SERVICES - READ QUEUE CURRENT STATUS
  3939.     AH = E3h subfn 66h
  3940.     DS:SI -> request buffer (see below)
  3941.     ES:DI -> reply buffer (see below)
  3942. Return: AL = status (00h,96h,9Ch,D1h-D3h,F1h,FCh,FEh,FFh) (see AH=E3h/SF=64h)
  3943. Notes:    this function is supported by Advanced NetWare 2.1+
  3944.     caller must be on a workstation which is security-equivalent to a
  3945.       member of the queue's Q_USERS or Q_OPERATORS properties
  3946. SeeAlso: AH=E3h/SF=64h,AH=E3h/SF=67h,AH=E3h/SF=6Fh,AH=E3h/SF=76h
  3947.  
  3948. Format of request buffer:
  3949. Offset    Size    Description
  3950.  00h    WORD    0005h (length of following data)
  3951.  02h    BYTE    66h (subfunction "Read Queue Current Status")
  3952.  03h    DWORD    (big-endian) object ID of queue
  3953.  
  3954. Format of reply buffer:
  3955. Offset    Size    Description
  3956.  00h    WORD    (call) 0085h (size of following results)
  3957.  02h    DWORD    (big-endian) object ID of queue
  3958.  06h    BYTE    status of queue
  3959.         bit 0: operator disabled addition of new jobs
  3960.         bit 1: operator refuses additional job servers attaching
  3961.         bit 2: operator disabled job servicing
  3962.  07h    BYTE    number of jobs in queue (00h-FAh)
  3963.  08h    BYTE    number of servers attached to queue (00h-19h)
  3964.  09h 25 DWORDs    list of object IDs of attached servers
  3965.  6Dh 25 BYTEs    list of attached servers' stations
  3966.  86h    BYTE    (call) maximum number of servers to return
  3967. --------N-21E3--SF67-------------------------
  3968. INT 21 - Novell NetWare - QUEUE SERVICES - SET QUEUE CURRENT STATUS
  3969.     AH = E3h subfn 67h
  3970.     DS:SI -> request buffer (see below)
  3971.     ES:DI -> reply buffer (see below)
  3972. Return: AL = status (00h,96h,9Ch,D0h,D1h,D3h,FEh,FFh) (see AH=E3h/SF=64h)
  3973. Notes:    this function is supported by Advanced NetWare 2.1+
  3974.     caller must have operator privileges
  3975. SeeAlso: AH=E3h/SF=64h,AH=E3h/SF=66h,AH=E3h/SF=6Fh,AH=E3h/SF=76h
  3976.  
  3977. Format of request buffer:
  3978. Offset    Size    Description
  3979.  00h    WORD    0006h (length of following data)
  3980.  02h    BYTE    67h (subfunction "Set Queue Current Status")
  3981.  03h    DWORD    (big-endian) object ID of queue
  3982.  07h    BYTE    queue status
  3983.         bit 0: operator disabled addition of new jobs
  3984.         bit 1: operator refuses additional job servers attaching
  3985.         bit 2: operator disabled job servicing
  3986.  
  3987. Format of reply buffer:
  3988. Offset    Size    Description
  3989.  00h    WORD    (call) 0000h (no results returned)
  3990. --------N-21E3--SF68-------------------------
  3991. INT 21 - Novell NetWare - QUEUE SERVICES - CREATE QUEUE JOB AND FILE
  3992.     AH = E3h subfn 68h
  3993.     DS:SI -> request buffer (see below)
  3994.     ES:DI -> reply buffer (see below)
  3995. Return: AL = status (00h,96h,99h,9Ch,D0h-D4h,DAh,EDh,EFh-F1h,F7h,FCh,FEh,FFh)
  3996.         (see AH=E3h/SF=64h)
  3997. Notes:    this function is supported by Advanced NetWare 2.1+
  3998.     caller must be on a workstation which is security-equivalent to a
  3999.       member of the queue's Q_USER property
  4000. SeeAlso: AH=E0h"SPOOLING",AH=E3h/SF=69h,AH=E3h/SF=6Ah,AH=E3h/SF=6Eh
  4001.  
  4002. Format of request buffer:
  4003. Offset    Size    Description
  4004.  00h    WORD    0107h (length of following data)
  4005.  02h    BYTE    68h (subfunction "Close File and Start Queue Job")
  4006.  03h    DWORD    (big-endian) object ID of queue
  4007.  07h    BYTE    client station
  4008.  08h    BYTE    client task number
  4009.  09h    DWORD    (big-endian) object ID of client
  4010.  0Dh    DWORD    (big-endian) object ID of target server
  4011.         FFFFFFFh if any server acceptable
  4012.  11h  6 BYTEs    target execution time (year,month,day,hour,minute,second)
  4013.         FFFFFFFFFFFFh to execute as soon as possible
  4014.  17h  6 BYTEs    job entry time (year,month,day,hour,minute,second)
  4015.  1Dh    WORD    (big-endian) job number
  4016.  1Fh    WORD    (big-endian) job type
  4017.  21h    BYTE    job position
  4018.  22h    BYTE    job control flags
  4019.  23h 14 BYTEs    ASCIZ job file name
  4020.  31h  6 BYTEs    job file handle
  4021.  37h    BYTE    server station
  4022.  38h    BYTE    server task number
  4023.  39h    DWORD    (big-endian) object ID of server
  4024.  3Dh 50 BYTEs    ASCIZ job description string
  4025.  6Fh 152 BYTEs    client record area
  4026.  
  4027. Format of reply buffer:
  4028. Offset    Size    Description
  4029.  00h    WORD    (call) 0036h (size of following results buffer)
  4030.  02h    BYTE    client station
  4031.  03h    BYTE    client task number
  4032.  04h    DWORD    (big-endian) object ID of client
  4033.  08h    DWORD    (big-endian) object ID of target server
  4034.  0Ch  6 BYTEs    target execution time (year,month,day,hour,minute,second)
  4035.  12h  6 BYTEs    job entry time (year,month,day,hour,minute,second)
  4036.  18h    WORD    (big-endian) job number
  4037.  1Ah    WORD    (big-endian) job type
  4038.  1Ch    BYTE    job position
  4039.  1Dh    BYTE    job control flags
  4040.  1Eh 14 BYTEs    ASCIZ job file name
  4041.  2Ch  6 BYTEs    job file handle
  4042.  32h    BYTE    server station
  4043.  33h    BYTE    server task number
  4044.  34h    DWORD    (big-endian) object ID of server or 00000000h
  4045. --------N-21E3--SF69-------------------------
  4046. INT 21 - Novell NetWare - QUEUE SERVICES - CLOSE FILE AND START QUEUE JOB
  4047.     AH = E3h subfn 69h
  4048.     DS:SI -> request buffer (see below)
  4049.     ES:DI -> reply buffer (see below)
  4050. Return: AL = status (00h,96h,D0h,D1h,D3h,D5h,D6h,FEh,FFh) (see AH=E3h/SF=64h)
  4051. Notes:    this function is supported by Advanced NetWare 2.1+
  4052.     caller must be on the workstation which created the job
  4053. SeeAlso: AH=E3h/SF=68h,AH=E3h/SF=6Ah,AH=E3h/SF=6Eh
  4054.  
  4055. Format of request buffer:
  4056. Offset    Size    Description
  4057.  00h    WORD    0007h (length of following data)
  4058.  02h    BYTE    69h (subfunction "Close File and Start Queue Job")
  4059.  03h    DWORD    (big-endian) object ID of queue
  4060.  07h    WORD    (big-endian) job number
  4061.  
  4062. Format of reply buffer:
  4063. Offset    Size    Description
  4064.  00h    WORD    (call) 0000h (no results returned)
  4065. --------N-21E3--SF6A-------------------------
  4066. INT 21 - Novell NetWare - QUEUE SERVICES - REMOVE JOB FROM QUEUE
  4067.     AH = E3h subfn 6Ah
  4068.     DS:SI -> request buffer (see below)
  4069.     ES:DI -> reply buffer (see below)
  4070. Return: AL = status (00h,96h,D0h,D1h,D5h,D6h,FEh,FFh) (see AH=E3h/SF=64h)
  4071. Notes:    this function is supported by Advanced NetWare 2.1+
  4072.     caller must have created the job or be an operator
  4073. SeeAlso: AH=E3h/SF=68h,AH=E3h/SF=6Ah,AH=E3h/SF=6Eh
  4074.  
  4075. Format of request buffer:
  4076. Offset    Size    Description
  4077.  00h    WORD    0007h (length of following data)
  4078.  02h    BYTE    6Ah (subfunction "Remove Job From Queue")
  4079.  03h    DWORD    (big-endian) object ID of queue
  4080.  07h    WORD    (big-endian) job number
  4081.  
  4082. Format of reply buffer:
  4083. Offset    Size    Description
  4084.  00h    WORD    (call) 0000h (no results returned)
  4085. --------N-21E3--SF6B-------------------------
  4086. INT 21 - Novell NetWare - QUEUE SERVICES - GET QUEUE JOB LIST
  4087.     AH = E3h subfn 6Bh
  4088.     DS:SI -> request buffer (see below)
  4089.     ES:DI -> reply buffer (see below)
  4090. Return: AL = status (00h,96h,9Ch,D0h-D3h,FCh,FEh,FFh) (see AH=E3h/SF=64h)
  4091. Notes:    this function is supported by Advanced NetWare 2.1+
  4092.     caller must be on a workstation which is security-equivalent to a
  4093.       member of the Q_USERS or Q_OPERATORS properties
  4094. SeeAlso: AH=E3h/SF=68h,AH=E3h/SF=6Ah,AH=E3h/SF=6Eh
  4095.  
  4096. Format of request buffer:
  4097. Offset    Size    Description
  4098.  00h    WORD    0005h (length of following data)
  4099.  02h    BYTE    6Bh (subfunction "Get Queue Job List")
  4100.  03h    DWORD    (big-endian) object ID of queue
  4101.  
  4102. Format of reply buffer:
  4103. Offset    Size    Description
  4104.  00h    WORD    (call) size of following results buffer (max 1F6h)
  4105.  02h    WORD    (big-endian) job count
  4106.  04h  N WORDs    (big-endian) list of job numbers by position in queue
  4107.     WORD    maximum job numbers
  4108. --------N-21E3--SF6C-------------------------
  4109. INT 21 - Novell NetWare - QUEUE SERVICES - READ QUEUE JOB ENTRY
  4110.     AH = E3h subfn 6Ch
  4111.     DS:SI -> request buffer (see below)
  4112.     ES:DI -> reply buffer (see below)
  4113. Return: AL = status (00h,96h,D0h-D3h,D5h,FCh,FEh,FFh) (see AH=E3h/SF=64h)
  4114. Notes:    this function is supported by Advanced NetWare 2.1+
  4115.     caller must be on a workstation which is security-equivalent to a
  4116.       member of the Q_USERS, Q_OPERATORS, or Q_SERVERS properties
  4117. SeeAlso: AH=E3h/SF=68h,AH=E3h/SF=6Ah,AH=E3h/SF=6Eh
  4118.  
  4119. Format of request buffer:
  4120. Offset    Size    Description
  4121.  00h    WORD    0007h (length of following data)
  4122.  02h    BYTE    6Ch (subfunction "Read Queue Job Entry")
  4123.  03h    DWORD    (big-endian) object ID of queue
  4124.  07h    WORD    (big-endian) job number
  4125.  
  4126. Format of reply buffer:
  4127. Offset    Size    Description
  4128.  00h    WORD    (call) 0100h (size of following results)
  4129.  02h    BYTE    client station number
  4130.  03h    BYTE    client task number
  4131.  04h    DWORD    object ID of client
  4132.  08h    DWORD    (big-endian) object ID of target server
  4133.         FFFFFFFFh if any server acceptable
  4134.  0Ch  6 BYTEs    target execution time (year,month,day,hour,minute,second)
  4135.         FFFFFFFFFFFFh if serviced as soon as possible
  4136.  12h  6 BYTEs    job entry time (year,month,day,hour,minute,second)
  4137.  18h    WORD    (big-endian) job number
  4138.  1Ah    WORD    (big-endian) job type
  4139.  1Ch    BYTE    job position
  4140.  1Dh    BYTE    job control flags (see below)
  4141.  1Eh 14 BYTEs    ASCIZ job filename
  4142.  2Ch  6 BYTEs    job file handle
  4143.  32h    BYTE    server station
  4144.  33h    BYTE    server task number
  4145.  34h    DWORD    object ID of server
  4146.  38h 50 BYTEs    ASCIZ job description string
  4147.  6Ah 152 BYTEs    client record area
  4148.  
  4149. Bitfields for job control flags:
  4150.  bit 3    job will be serviced automatically if connection broken
  4151.  bit 4    job remains in queue after server aborts job
  4152.  bit 5    client has not filled associated job file
  4153.  bit 6    User Hold--job advances, but cannot be serviced until this bit is
  4154.        cleared by user or operator
  4155.  bit 7    Operator Hold--job advances, but cannot be serviced until this bit is
  4156.        cleared by an operator
  4157. --------N-21E3--SF6D-------------------------
  4158. INT 21 - Novell NetWare - QUEUE SERVICES - CHANGE QUEUE JOB ENTRY
  4159.     AH = E3h subfn 6Dh
  4160.     DS:SI -> request buffer (see below)
  4161.     ES:DI -> reply buffer (see below)
  4162. Return: AL = status (00h,96h,D0h,D1h,D5h,D7h,FEh,FFh) (see AH=E3h/SF=64h)
  4163. Notes:    this function is supported by Advanced NetWare 2.1+
  4164.     caller must be an operator or the user who created the job
  4165. SeeAlso: AH=E3h/SF=68h,AH=E3h/SF=6Ah,AH=E3h/SF=6Ch,AH=E3h/SF=6Eh
  4166.  
  4167. Format of request buffer:
  4168. Offset    Size    Description
  4169.  00h    WORD    0105h (length of following data)
  4170.  02h    BYTE    6Dh (subfunction "Change Queue Job Entry")
  4171.  03h    DWORD    (big-endian) object ID of queue
  4172.  07h    BYTE    client station number
  4173.  08h    BYTE    client task number
  4174.  09h    DWORD    (big-endian) object ID of client
  4175.  0Dh    DWORD    (big-endian) object ID of target server
  4176.  11h  6 BYTEs    target execution time (year,month,day,hour,minute,second)
  4177.  17h  6 BYTEs    job entry time (year,month,day,hour,minute,second)
  4178.  1Dh    WORD    (big-endian) job number
  4179.  1Fh    WORD    (big-endian) job type
  4180.  21h    BYTE    job position
  4181.  22h    BYTE    job control flags (see AH=E3h/SF=6Ch)
  4182.  23h 14 BYTEs    ASCIZ job filename
  4183.  31h  6 BYTEs    job file handle
  4184.  37h    BYTE    server station
  4185.  38h    BYTE    server task number
  4186.  39h    DWORD    object ID of server
  4187.  3Dh 50 BYTEs    ASCIZ job description string
  4188.  6Fh 152 BYTEs    client record area
  4189.  
  4190. Format of reply buffer:
  4191. Offset    Size    Description
  4192.  00h    WORD    (call) 0000h (no results returned)
  4193. --------N-21E3--SF6E-------------------------
  4194. INT 21 - Novell NetWare - QUEUE SERVICES - CHANGE QUEUE JOB POSITION
  4195.     AH = E3h subfn 6Eh
  4196.     DS:SI -> request buffer (see below)
  4197.     ES:DI -> reply buffer (see below)
  4198. Return: AL = status (00h,96h,D0h,D1h,D5h,D6h,FEh,FFh) (see AH=E3h/SF=64h)
  4199. Notes:    this function is supported by Advanced NetWare 2.1+
  4200.     caller must be an operator
  4201.     if the specified position is greater than the number of jobs in the
  4202.       queue, the job is placed at the end of the queue
  4203. SeeAlso: AH=E3h/SF=68h,AH=E3h/SF=6Ah,AH=E3h/SF=6Ch,AH=E3h/SF=6Dh
  4204.  
  4205. Format of request buffer:
  4206. Offset    Size    Description
  4207.  00h    WORD    0008h (length of following data)
  4208.  02h    BYTE    6Eh (subfunction "Change Queue Job Position")
  4209.  03h    DWORD    (big-endian) object ID of queue
  4210.  07h    WORD    (big-endian) job number
  4211.  09h    BYTE    new position in queue (01h-FAh)
  4212.  
  4213. Format of reply buffer:
  4214. Offset    Size    Description
  4215.  00h    WORD    (call) 0000h (no results returned)
  4216. --------N-21E3--SF6F-------------------------
  4217. INT 21 - Novell NetWare - QUEUE SERVICES - ATTACH QUEUE SERVER TO QUEUE
  4218.     AH = E3h subfn 6Fh
  4219.     DS:SI -> request buffer (see below)
  4220.     ES:DI -> reply buffer (see below)
  4221. Return: AL = status (00h,96h,9Ch,D0h,D1h,D3h,DAh,DBh,FEh,FFh)
  4222.         (see also AH=E3h/SF=64h)
  4223.         FFh bindery failure, or no such property, or no such member
  4224. Desc:    attach the calling job server to the specified queue
  4225. Notes:    this function is supported by Advanced NetWare 2.1+
  4226.     a queue may have up to 25 job servers attached
  4227.     the calling workstation must be security-equivalent to a member of the
  4228.       queue's Q_SERVERS property
  4229. SeeAlso: AH=E3h/SF=70h,AH=E3h/SF=71h,AH=E3h/SF=72h,AH=E3h/SF=73h,AH=E3h/SF=76h
  4230.  
  4231. Format of request buffer:
  4232. Offset    Size    Description
  4233.  00h    WORD    0005h (length of following data)
  4234.  02h    BYTE    6Fh (subfunction "Attach Queue Server To Queue")
  4235.  03h    DWORD    (big-endian) object ID of queue
  4236.  
  4237. Format of reply buffer:
  4238. Offset    Size    Description
  4239.  00h    WORD    (call) 0000h (no results returned)
  4240. --------N-21E3--SF70-------------------------
  4241. INT 21 - Novell NetWare - QUEUE SERVICES - DETACH QUEUE SERVER FROM QUEUE
  4242.     AH = E3h subfn 70h
  4243.     DS:SI -> request buffer (see below)
  4244.     ES:DI -> reply buffer (see below)
  4245. Return: AL = status (00h,96h,9Ch,D0h,D1h,D2h,FEh,FFh) (see AH=E3h/SF=64h)
  4246. Desc:    remove the calling job server from the specified queue's list of
  4247.       servers
  4248. Notes:    this function is supported by Advanced NetWare 2.1+
  4249.     the caller must have previously attached itself to the queue
  4250. SeeAlso: AH=E3h/SF=6Fh,AH=E3h/SF=72h,AH=E3h/SF=73h,AH=E3h/SF=76h
  4251.  
  4252. Format of request buffer:
  4253. Offset    Size    Description
  4254.  00h    WORD    0005h (length of following data)
  4255.  02h    BYTE    70h (subfunction "Detach Queue Server From Queue")
  4256.  03h    DWORD    (big-endian) object ID of queue
  4257.  
  4258. Format of reply buffer:
  4259. Offset    Size    Description
  4260.  00h    WORD    (call) 0000h (no results returned)
  4261. --------N-21E3--SF71-------------------------
  4262. INT 21 - Novell NetWare - QUEUE SERVICES - SERVICE QUEUE JOB AND OPEN FILE
  4263.     AH = E3h subfn 71h
  4264.     DS:SI -> request buffer (see below)
  4265.     ES:DI -> reply buffer (see AH=E3h/SF=68h)
  4266. Return: AL = status (00h,96h,9Ch,D0h,D1h,D3h,D5h,D9h,DAh,FEh,FFh)
  4267.         (see AH=E3h/SF=64h)
  4268. Notes:    this function is supported by Advanced NetWare 2.1+
  4269.     the caller must be on a workstation which is security-equivalent to a
  4270.       member of the queue's Q_USERS, Q_OPERATORS, or Q_SERVERS properties
  4271. SeeAlso: AH=E3h/SF=6Fh,AH=E3h/SF=72h,AH=E3h/SF=73h,AH=E3h/SF=76h
  4272.  
  4273. Format of request buffer:
  4274. Offset    Size    Description
  4275.  00h    WORD    0007h (length of following data)
  4276.  02h    BYTE    71h (subfunction "Service Queue Job and Open File")
  4277.  03h    DWORD    (big-endian) object ID of queue
  4278.  07h    WORD    (big-endian) target job type
  4279.         FFFFh any
  4280. --------N-21E3--SF72-------------------------
  4281. INT 21 - Novell NetWare - QUEUE SERVICES - FINISH SERVICING QUEUE JOB AND FILE
  4282.     AH = E3h subfn 72h
  4283.     DS:SI -> request buffer (see below)
  4284.     ES:DI -> reply buffer (see below)
  4285. Return: AL = status (00h,96h,D0h,D1h,D6h) (see AH=E3h/SF=64h)
  4286. Desc:    inform the Queue Management System (QMS) that the queue server has
  4287.       completed a job
  4288. Notes:    this function is supported by Advanced NetWare 2.1+
  4289.     the caller must be a job server which has previously obtained a job
  4290.       for servicing
  4291. SeeAlso: AH=E3h/SF=6Fh,AH=E3h/SF=71h,AH=E3h/SF=73h,AH=E3h/SF=76h
  4292.  
  4293. Format of request buffer:
  4294. Offset    Size    Description
  4295.  00h    WORD    000Bh (length of following data)
  4296.  02h    BYTE    72h (subfunction "Finish Servicing Queue Job and File")
  4297.  03h    DWORD    (big-endian) object ID of queue
  4298.  07h    WORD    (big-endian) job number
  4299.  09h    DWORD    (big-endian) charge
  4300.  
  4301. Format of reply buffer:
  4302. Offset    Size    Description
  4303.  00h    WORD    (call) 0000h (no results returned)
  4304. --------N-21E3--SF73-------------------------
  4305. INT 21 - Novell NetWare - QUEUE SERVICES - ABORT SERVICING QUEUE JOB AND FILE
  4306.     AH = E3h subfn 73h
  4307.     DS:SI -> request buffer (see below)
  4308.     ES:DI -> reply buffer (see below)
  4309. Return: AL = status (00h,96h,D0h,D1h,D6h,D9h) (see AH=E3h/SF=64h)
  4310. Desc:    inform the Queue Management System (QMS) that the queue server is
  4311.       unable to service a previously-accepted job
  4312. Note:    this function is supported by Advanced NetWare 2.1+
  4313. SeeAlso: AH=E3h/SF=6Fh,AH=E3h/SF=71h,AH=E3h/SF=72h,AH=E3h/SF=76h
  4314.  
  4315. Format of request buffer:
  4316. Offset    Size    Description
  4317.  00h    WORD    0007h (length of following data)
  4318.  02h    BYTE    73h (subfunction "Abort Servicing Queue Job and File")
  4319.  03h    DWORD    (big-endian) object ID of queue
  4320.  07h    WORD    (big-endian) job number
  4321.  
  4322. Format of reply buffer:
  4323. Offset    Size    Description
  4324.  00h    WORD    (call) 0000h (no results returned)
  4325. --------N-21E3--SF74-------------------------
  4326. INT 21 - Novell NetWare - QUEUE SERVICES - CHANGE TO CLIENT RIGHTS
  4327.     AH = E3h subfn 74h
  4328.     DS:SI -> request buffer (see below)
  4329.     ES:DI -> reply buffer (see below)
  4330. Return: AL = status (00h,96h,D0h,D1h,D5h,D9h) (see AH=E3h/SF=64h)
  4331. Desc:    temporarily assume the login identity of the client submitting the
  4332.       job being serviced
  4333. Notes:    this function is supported by Advanced NetWare 2.1+
  4334.     caller must be a job server which has obtained a job for servicing
  4335. SeeAlso: AH=E3h/SF=75h
  4336.  
  4337. Format of request buffer:
  4338. Offset    Size    Description
  4339.  00h    WORD    0007h (length of following data)
  4340.  02h    BYTE    74h (subfunction "Change To Client Rights")
  4341.  03h    DWORD    (big-endian) object ID of queue
  4342.  07h    WORD    (big-endian) job number
  4343.  
  4344. Format of reply buffer:
  4345. Offset    Size    Description
  4346.  00h    WORD    (call) 0000h (no results returned)
  4347. --------N-21E3--SF75-------------------------
  4348. INT 21 - Novell NetWare - QUEUE SERVICES - RESTORE QUEUE SERVER RIGHTS
  4349.     AH = E3h subfn 75h
  4350.     DS:SI -> request buffer (see below)
  4351.     ES:DI -> reply buffer (see below)
  4352. Return: AL = status (00h,96h,9Ch,D0h,D1h,D3h,D5h,D9h,DAh,FEh,FFh)
  4353.         (see AH=E3h/SF=64h)
  4354. Desc:    restore server's own identity after assuming the login identity of the
  4355.       client submitting the job being serviced
  4356. Notes:    this function is supported by Advanced NetWare 2.1+
  4357.     caller must be a job server which has previously changed its identity
  4358. SeeAlso: AH=E3h/SF=74h
  4359.  
  4360. Format of request buffer:
  4361. Offset    Size    Description
  4362.  00h    WORD    0001h (length of following data)
  4363.  02h    BYTE    75h (subfunction "Change To Client Rights")
  4364.  
  4365. Format of reply buffer:
  4366. Offset    Size    Description
  4367.  00h    WORD    (call) 0000h (no results returned)
  4368. --------N-21E3--SF76-------------------------
  4369. INT 21 - Novell NetWare - QUEUE SERVICES - READ QUEUE SERVER CURRENT STATUS
  4370.     AH = E3h subfn 76h
  4371.     DS:SI -> request buffer (see below)
  4372.     ES:DI -> reply buffer (see below)
  4373. Return: AL = status (00h,96h,9Ch,D1h-D3h,F1h,FCh,FEh,FFh) (see AH=E3h/SF=64h)
  4374. Notes:    this function is supported by Advanced NetWare 2.1+
  4375.     caller must be on a workstation which is security-equivalent to a
  4376.       member of the Q_USERS or Q_OPERATORS properties
  4377. SeeAlso: AH=E3h/SF=68h,AH=E3h/SF=6Ch,AH=E3h/SF=6Fh,AH=E3h/SF=77h,AH=E3h/SF=78h
  4378.  
  4379. Format of request buffer:
  4380. Offset    Size    Description
  4381.  00h    WORD    000Ah (length of following data)
  4382.  02h    BYTE    76h (subfunction "Read Queue Server Current Status")
  4383.  03h    DWORD    (big-endian) object ID of queue
  4384.  07h    DWORD    (big-endian) object ID of server
  4385.  0Bh    BYTE    server station
  4386.  
  4387. Format of reply buffer:
  4388. Offset    Size    Description
  4389.  00h    WORD    (call) 0040h (size of following results)
  4390.  02h 64 BYTEs    server status record (format depends on server)
  4391.         first four bytes should contain estimated "price" for an
  4392.         average job
  4393. --------N-21E3--SF77-------------------------
  4394. INT 21 - Novell NetWare - QUEUE SERVICES - SET QUEUE SERVER CURRENT STATUS
  4395.     AH = E3h subfn 77h
  4396.     DS:SI -> request buffer (see below)
  4397.     ES:DI -> reply buffer (see below)
  4398. Return: AL = status (00h,96h,9Ch,D0h,D1h,FEh,FFh) (see AH=E3h/SF=64h)
  4399. Notes:    this function is supported by Advanced NetWare 2.1+
  4400.     caller must be a job server which has attached itself to the queue
  4401. SeeAlso: AH=E3h/SF=68h,AH=E3h/SF=6Ch,AH=E3h/SF=6Fh,AH=E3h/SF=76h,AH=E3h/SF=78h
  4402.  
  4403. Format of request buffer:
  4404. Offset    Size    Description
  4405.  00h    WORD    0045h (length of following data)
  4406.  02h    BYTE    77h (subfunction "Set Queue Server Current Status")
  4407.  03h    DWORD    (big-endian) object ID of queue
  4408.  02h 64 BYTEs    server status record (format depends on server)
  4409.         first four bytes should contain estimated "price" for an
  4410.         average job
  4411.  
  4412. Format of reply buffer:
  4413. Offset    Size    Description
  4414.  00h    WORD    (call) 0000h (no results returned)
  4415. --------N-21E3--SF78-------------------------
  4416. INT 21 - Novell NetWare - QUEUE SERVICES - GET QUEUE JOB'S FILE SIZE
  4417.     AH = E3h subfn 78h
  4418.     DS:SI -> request buffer (see below)
  4419.     ES:DI -> reply buffer (see below)
  4420. Return: AL = status (see also AH=E3h/SF=64h)
  4421.         00h successful
  4422. Notes:    this function is supported by Advanced NetWare 2.1+
  4423.     caller must be on a workstation which is security-equivalent to a
  4424.       member of the queue's Q_USERS, Q_OPERATORS, or Q_SERVERS properties
  4425. SeeAlso: AH=E3h/SF=68h,AH=E3h/SF=6Ch,AH=E3h/SF=71h
  4426.  
  4427. Format of request buffer:
  4428. Offset    Size    Description
  4429.  00h    WORD    0007h (length of following data)
  4430.  02h    BYTE    78h (subfunction "Get Queue Job's File Size")
  4431.  03h    DWORD    (big-endian) object ID of queue
  4432.  07h    WORD    (big-endian) job number
  4433.  
  4434. Format of reply buffer:
  4435. Offset    Size    Description
  4436.  00h    WORD    (call) 000Ah (size of following results)
  4437.  02h    DWORD    (big-endian) object ID of queue
  4438.  06h    WORD    (big-endian) job number
  4439.  08h    DWORD    (big-endian) size of job file in bytes
  4440. --------N-21E3--SF96-------------------------
  4441. INT 21 - Novell NetWare - ACCOUNTING SERVICES - GET ACCOUNT STATUS
  4442.     AH = E3h subfn 96h
  4443.     DS:SI -> request buffer (see below)
  4444.     ES:DI -> reply buffer (see below)
  4445. Return: AL = status (00h,C0h,C1h) (see below)
  4446. Note:    this function is supported by Advanced NetWare 2.1+
  4447. SeeAlso: AH=E3h/SF=97h,AH=E3h/SF=98h,AH=E3h/SF=99h
  4448.  
  4449. Values for status:
  4450.  00h successful
  4451.  C0h no account privileges
  4452.  C1h no account balance
  4453.  C2h credit limit exceeded
  4454.  C3h too many holds on account
  4455.  
  4456. Format of request buffer:
  4457. Offset    Size    Description
  4458.  00h    WORD    length of following data (max 33h)
  4459.  02h    BYTE    96h (subfunction "Get Account Status")
  4460.  03h    WORD    (big-endian) type of bindery object
  4461.  05h    BYTE    length of object name (01h to 2Fh)
  4462.  06h  N BYTEs    object name
  4463.  
  4464. Format of reply buffer:
  4465. Offset    Size    Description
  4466.  00h    WORD    (call) length of following buffer space
  4467.  02h    DWORD    (big-endian) account balance
  4468.  06h    DWORD    (big-endian) credit limit
  4469.         signed number indicating lowest allowable account balance
  4470.  0Ah 120 BYTEs    reserved
  4471.  82h    DWORD    (big-endian) object ID, server 1
  4472.  86h    DWORD    (big-endian) hold amount, server 1
  4473.     ...
  4474.  F8h    DWORD    (big-endian) object ID, server 16
  4475.  FCh    DWORD    (big-endian) hold amount, server 16
  4476. Note:    the reply buffer lists the servers which have placed holds on a portion
  4477.       of the account balance, and the amount reserved by each
  4478. --------N-21E3--SF97-------------------------
  4479. INT 21 - Novell NetWare - ACCOUNTING SERVICES - SUBMIT ACCOUNT CHARGE
  4480.     AH = E3h subfn 97h
  4481.     DS:SI -> request buffer (see below)
  4482.     ES:DI -> reply buffer (see below)
  4483. Return: AL = status (00h,C0h-C2h) (see AH=E3h/SF=96h)
  4484. Note:    this function is supported by Advanced NetWare 2.1+
  4485. SeeAlso: AH=E3h/SF=96h,AH=E3h/SF=98h
  4486.  
  4487. Format of request buffer:
  4488. Offset    Size    Description
  4489.  00h    WORD    length of following data (max 13Fh)
  4490.  02h    BYTE    97h (subfunction "Submit Account Charge")
  4491.  03h    WORD    (big-endian) service type
  4492.  05h    DWORD    (big-endian) amount to be charged to account
  4493.  09h    DWORD    (big-endian) amount of prior hold to be cancelled
  4494.  0Dh    WORD    (big-endian) type of bindery object
  4495.  0Fh    WORD    (big-endian) type of comment
  4496.         8000h-FFFFh reserved for experimental use
  4497.  11h    BYTE    length of object's name
  4498.  12h  N BYTEs    object name
  4499.     BYTE    length of comment
  4500.       N BYTEs    comment
  4501.  
  4502. Format of reply buffer:
  4503. Offset    Size    Description
  4504.  00h    WORD    0000h (no data returned)
  4505. --------N-21E3--SF98-------------------------
  4506. INT 21 - Novell NetWare - ACCOUNTING SERVICES - SUBMIT ACCOUNT HOLD
  4507.     AH = E3h subfn 98h
  4508.     DS:SI -> request buffer (see below)
  4509.     ES:DI -> reply buffer (see below)
  4510. Return: AL = status (00h,C0h-C3h) (see AH=E3h/SF=96h)
  4511. Note:    this function is supported by Advanced NetWare 2.1+
  4512. SeeAlso: AH=E3h/SF=96h,AH=E3h/SF=97h
  4513.  
  4514. Format of request buffer:
  4515. Offset    Size    Description
  4516.  00h    WORD    length of following data (max 37h)
  4517.  02h    BYTE    98h (subfunction "Submit Account Hold")
  4518.  03h    DWORD    (big-endian) amount of account balance to reserve
  4519.  07h    WORD    (big-endian) type of bindery object
  4520.  09h    BYTE    length of object's name
  4521.  0Ah  N BYTEs    object name
  4522.  
  4523. Format of reply buffer:
  4524. Offset    Size    Description
  4525.  00h    WORD    0000h (no data returned)
  4526. --------N-21E3--SF99-------------------------
  4527. INT 21 - Novell NetWare - ACCOUNTING SERVICES - SUBMIT ACCOUNT NOTE
  4528.     AH = E3h subfn 99h
  4529.     DS:SI -> request buffer (see below)
  4530.     ES:DI -> reply buffer (see below)
  4531. Return: AL = status
  4532.         00h successful
  4533.         C0h    no account privileges
  4534. Note:    this function is supported by Advanced NetWare 2.1+
  4535. SeeAlso: AH=E3h/SF=96h
  4536.  
  4537. Format of request buffer:
  4538. Offset    Size    Description
  4539.  00h    WORD    length of following data (max 137h)
  4540.  02h    BYTE    99h (subfunction "Submit Account Note")
  4541.  03h    WORD    (big-endian) type of service
  4542.  05h    WORD    (big-endian) type of bindery object
  4543.  07h    WORD    (big-endian) type of comment
  4544.         8000h-FFFFh reserved for experimental use
  4545.  09h    BYTE    length of object's name
  4546.  0Ah  N BYTEs    object name
  4547.     BYTE    length of comment
  4548.       N BYTEs    comment
  4549.  
  4550. Format of reply buffer:
  4551. Offset    Size    Description
  4552.  00h    WORD    0000h (no data returned)
  4553. --------N-21E3--SFC8-------------------------
  4554. INT 21 - Novell NetWare - FILE SERVER - CHECK CONSOLE PRIVILEGES
  4555.     AH = E3h subfn C8h
  4556.     DS:SI -> request buffer (see below)
  4557.     ES:DI -> reply buffer (see below)
  4558. Return: AL = status
  4559.         00h successful
  4560.         C6h no console rights
  4561. Desc:    determine whether the caller is a console operator
  4562. Notes:    this function is supported by Advanced NetWare 2.1+
  4563.     NetWare determines console privileges by checking the file server's
  4564.       OPERATOR property for the caller's object ID
  4565. SeeAlso: AH=E3h/SF=C9h,AH=E3h/SF=D1h
  4566.  
  4567. Format of request buffer:
  4568. Offset    Size    Description
  4569.  00h    WORD    0001h (length of following data)
  4570.  02h    BYTE    C8h (subfunction "Check Console Privileges")
  4571.  
  4572. Format of reply buffer:
  4573. Offset    Size    Description
  4574.  00h    WORD    (call) 0000h (no results returned)
  4575. --------N-21E3--SFC9-------------------------
  4576. INT 21 - Novell NetWare - FILE SERVER - GET FILE SERVER DESCRIPTION STRINGS
  4577.     AH = E3h subfn C9h
  4578.     DS:SI -> request buffer (see below)
  4579.     ES:DI -> reply buffer (see below)
  4580. Return: AL = status
  4581.         00h successful
  4582. Notes:    this function is supported by Advanced NetWare 2.1+
  4583.     the calling workstation must be attached to the file server
  4584. SeeAlso: AH=E3h/SF=11h,AH=E3h/SF=CDh,AH=E3h/SF=E8h
  4585.  
  4586. Format of request buffer:
  4587. Offset    Size    Description
  4588.  00h    WORD    0001h (length of following data)
  4589.  02h    BYTE    C9h (subfunction "Get File Server Description Strings")
  4590.  
  4591. Format of reply buffer:
  4592. Offset    Size    Description
  4593.  00h    WORD    (call) 0200h (size of following results buffer)
  4594.  02h    var    ASCIZ name of company distributing this copy of NetWare
  4595.     var    ASCIZ version and revision
  4596.       9 BYTEs    ASCIZ revision date (mm/dd/yy)
  4597.     var    ASCIZ copyright notice
  4598. --------N-21E3--SFCA-------------------------
  4599. INT 21 - Novell NetWare - FILE SERVER - SET FILE SERVER DATE AND TIME
  4600.     AH = E3h subfn CAh
  4601.     DS:SI -> request buffer (see below)
  4602.     ES:DI -> reply buffer (see below)
  4603. Return: AL = status
  4604.         00h successful
  4605.         C6h no console rights
  4606. Notes:    this function is supported by Advanced NetWare 2.1+
  4607.     the calling workstation must have console operator privileges
  4608. SeeAlso: AH=2Bh,AH=2Dh,AH=E3h/SF=C8h,AH=E7h
  4609.  
  4610. Format of request buffer:
  4611. Offset    Size    Description
  4612.  00h    WORD    0007h (length of following data)
  4613.  02h    BYTE    CAh (subfunction "Set File Server Date And Time")
  4614.  03h    BYTE    year (00-79 = 2000-2079, 80-99 = 1980-1999)
  4615.  04h    BYTE    month (1-12)
  4616.  05h    BYTE    day (1-31)
  4617.  06h    BYTE    hour (0-23)
  4618.  07h    BYTE    minute
  4619.  08h    BYTR    second
  4620.  
  4621. Format of reply buffer:
  4622. Offset    Size    Description
  4623.  00h    WORD    (call) 0000h (no results returned)
  4624. --------N-21E3--SFCB-------------------------
  4625. INT 21 - Novell NetWare - FILE SERVER - DISABLE FILE SERVER LOGIN
  4626.     AH = E3h subfn CBh
  4627.     DS:SI -> request buffer (see below)
  4628.     ES:DI -> reply buffer (see below)
  4629. Return: AL = status
  4630.         00h successful
  4631.         C6h no console rights
  4632. Notes:    this function is supported by Advanced NetWare 2.1+
  4633.     the calling workstation must have console operator privileges
  4634. SeeAlso: AH=E3h/SF=C8h,AH=E3h/SF=CCh,AH=E3h/SF=D3h
  4635.  
  4636. Format of request buffer:
  4637. Offset    Size    Description
  4638.  00h    WORD    0001h (length of following data)
  4639.  02h    BYTE    CBh (subfunction "Disable File Server Login")
  4640.  
  4641. Format of reply buffer:
  4642. Offset    Size    Description
  4643.  00h    WORD    (call) 0000h (no results returned)
  4644. --------N-21E3--SFCC-------------------------
  4645. INT 21 - Novell NetWare - FILE SERVER - ENABLE FILE SERVER LOGIN
  4646.     AH = E3h subfn CCh
  4647.     DS:SI -> request buffer (see below)
  4648.     ES:DI -> reply buffer (see below)
  4649. Return: AL = status
  4650.         00h successful
  4651.         C6h no console rights
  4652. Notes:    this function is supported by Advanced NetWare 2.1+
  4653.     the calling workstation must have console operator privileges
  4654. SeeAlso: AH=E3h/SF=C8h,AH=E3h/SF=CBh
  4655.  
  4656. Format of request buffer:
  4657. Offset    Size    Description
  4658.  00h    WORD    0001h (length of following data)
  4659.  02h    BYTE    CCh (subfunction "Enable File Server Login")
  4660.  
  4661. Format of reply buffer:
  4662. Offset    Size    Description
  4663.  00h    WORD    (call) 0000h (no results returned)
  4664. --------N-21E3--SFCD-------------------------
  4665. INT 21 - Novell NetWare - FILE SERVER - GET FILE SERVER LOGIN STATUS
  4666.     AH = E3h subfn CDh
  4667.     DS:SI -> request buffer (see below)
  4668.     ES:DI -> reply buffer (see below)
  4669. Return: AL = status
  4670.         00h successful
  4671.         C6h no console rights
  4672. Notes:    this function is supported by Advanced NetWare 2.1+
  4673.     the calling workstation must have console operator privileges
  4674. SeeAlso: AH=E3h/SF=C8h,AH=E3h/SF=CBh,AH=E3h/SF=CCh
  4675.  
  4676. Format of request buffer:
  4677. Offset    Size    Description
  4678.  00h    WORD    0001h (length of following data)
  4679.  02h    BYTE    CDh (subfunction "Get File Server Login Status")
  4680.  
  4681. Format of reply buffer:
  4682. Offset    Size    Description
  4683.  00h    WORD    (call) 0001h (size of following results buffer)
  4684.  02h    BYTE    login state (00h disabled, 01h enabled)
  4685. --------N-21E3--SFCE-------------------------
  4686. INT 21 - Novell NetWare - FILE SERVICES - PURGE ALL ERASED FILES
  4687.     AH = E3h subfn CEh
  4688.     DS:SI -> request buffer (see below)
  4689.     ES:DI -> reply buffer (see below)
  4690. Return: AL = status
  4691.         00h successful
  4692.         C6h no console rights
  4693. Desc:    all files marked for deletion on the file server are purged, regardless
  4694.       of which workstation actually erased them
  4695. Notes:    this function is supported by NetWare 4.0+, Advanced NetWare 1.0+, and
  4696.       Alloy NTNX
  4697.     the calling workstation must have console operator privileges
  4698. SeeAlso: AH=13h,AH=E2h/SF=10h,AH=E3h/SF=C8h,AX=F244h
  4699.  
  4700. Format of request buffer:
  4701. Offset    Size    Description
  4702.  00h    WORD    0001h (length of following data)
  4703.  02h    BYTE    CEh (subfunction "Purge All Erased Files")
  4704.  
  4705. Format of reply buffer:
  4706. Offset    Size    Description
  4707.  00h    WORD    (call) 0000h (no results returned)
  4708. --------N-21E3--SFCF-------------------------
  4709. INT 21 - Novell NetWare - FILE SERVER - DISABLE TRANSACTION TRACKING
  4710.     AH = E3h subfn CFh
  4711.     DS:SI -> request buffer (see below)
  4712.     ES:DI -> reply buffer (see below)
  4713. Return: AL = status
  4714.         00h successful
  4715.         C6h no console rights
  4716. Notes:    this function is supported by Advanced NetWare 2.1+
  4717.     the calling workstation must have console operator privileges
  4718. SeeAlso: AH=E3h/SF=C8h,AH=E3h/SF=D0h
  4719.  
  4720. Format of request buffer:
  4721. Offset    Size    Description
  4722.  00h    WORD    0001h (length of following data)
  4723.  02h    BYTE    CFh (subfunction "Disable Transaction Tracking")
  4724.  
  4725. Format of reply buffer:
  4726. Offset    Size    Description
  4727.  00h    WORD    (call) 0000h (no results returned)
  4728. --------N-21E3--SFD0-------------------------
  4729. INT 21 - Novell NetWare - FILE SERVER - ENABLE TRANSACTION TRACKING
  4730.     AH = E3h subfn D0h
  4731.     DS:SI -> request buffer (see below)
  4732.     ES:DI -> reply buffer (see below)
  4733. Return: AL = status
  4734.         00h successful
  4735.         C6h no console rights
  4736. Desc:    restart transaction tracking after being stopped either explicitly by
  4737.       AH=E3h/SF=CFh or automatically due to a full transaction volume
  4738. Notes:    this function is supported by Advanced NetWare 2.1+
  4739.     the calling workstation must have console operator privileges
  4740. SeeAlso: AH=E3h/SF=C8h,AH=E3h/SF=CFh
  4741.  
  4742. Format of request buffer:
  4743. Offset    Size    Description
  4744.  00h    WORD    0001h (length of following data)
  4745.  02h    BYTE    D0h (subfunction "Enable Transaction Tracking")
  4746.  
  4747. Format of reply buffer:
  4748. Offset    Size    Description
  4749.  00h    WORD    (call) 0000h (no results returned)
  4750. --------N-21E3--SFD1-------------------------
  4751. INT 21 - Novell NetWare - FILE SERVER - SEND CONSOLE BROADCAST
  4752.     AH = E3h subfn D1h
  4753.     DS:SI -> request buffer (see below)
  4754.     ES:DI -> reply buffer (see below)
  4755. Return: AL = status
  4756.         00h successful
  4757.         C6h no console rights
  4758. Notes:    this function is supported by Advanced NetWare 2.1+
  4759.     the calling workstation must have console operator privileges
  4760.     the broadcast message will not be received by workstations which have
  4761.       disabled broadcasts with AH=E1h/SF=02h
  4762. SeeAlso: AH=E1h/SF=02h,AH=E1h/SF=09h,AH=E3h/SF=C8h,AH=E3h/SF=D3h
  4763.  
  4764. Format of request buffer:
  4765. Offset    Size    Description
  4766.  00h    WORD    length of following data (max A2h)
  4767.  02h    BYTE    D1h (subfunction "Send Console Broadcast")
  4768.  03h    BYTE    number of connections to receive message 
  4769.         00h = all, else specific list below
  4770.  04h  N BYTEs    connection list
  4771.     BYTE    length of message (max 3Ch)
  4772.       N BYTEs    message
  4773.  
  4774. Format of reply buffer:
  4775. Offset    Size    Description
  4776.  00h    WORD    (call) 0000h (no results returned)
  4777. --------N-21E3--SFD2-------------------------
  4778. INT 21 - Novell NetWare - FILE SERVER - CLEAR CONNECTION NUMBER
  4779.     AH = E3h subfn D2h
  4780.     DS:SI -> request buffer (see below)
  4781.     ES:DI -> reply buffer (see below)
  4782. Return: AL = status
  4783.         00h successful
  4784.         C6h no console rights
  4785. Desc:    close the open files and release all file locks for a connection,
  4786.       abort transactions if a TTS file server, and detach from the file
  4787.       server
  4788. Notes:    this function is supported by Advanced NetWare 2.1+
  4789.     the caller must have SUPERVISOR privileges
  4790. SeeAlso: AH=E3h/SF=C9h,AH=E3h/SF=D1h
  4791.  
  4792. Format of request buffer:
  4793. Offset    Size    Description
  4794.  00h    WORD    0002h (length of following data)
  4795.  02h    BYTE    D2h (subfunction "Clear Connection Number")
  4796.  03h    BYTE    connection number
  4797.  
  4798. Format of reply buffer:
  4799. Offset    Size    Description
  4800.  00h    WORD    (call) 0000h (no results returned)
  4801. --------N-21E3--SFD3-------------------------
  4802. INT 21 - Novell NetWare - FILE SERVER - DOWN FILE SERVER
  4803.     AH = E3h subfn D3h
  4804.     DS:SI -> request buffer (see below)
  4805.     ES:DI -> reply buffer (see below)
  4806. Return: AL = status
  4807.         00h successful
  4808.         C6h no console rights
  4809.         FFh files open
  4810. Desc:    take down the file server
  4811. Notes:    this function is supported by Advanced NetWare 2.1+
  4812.     the calling workstation must have SUPERVISOR privileges
  4813. SeeAlso: AH=E3h/SF=C8h,AH=E3h/SF=CBh,AH=E3h/SF=CFh,AH=E3h/SF=D1h
  4814.  
  4815. Format of request buffer:
  4816. Offset    Size    Description
  4817.  00h    WORD    0002h (length of following data)
  4818.  02h    BYTE    D3h (subfunction "Down File Server")
  4819.  03h    BYTE    flag: force down even if files open if nonzero
  4820.  
  4821. Format of reply buffer:
  4822. Offset    Size    Description
  4823.  00h    WORD    (call) 0000h (no results returned)
  4824. --------N-21E3--SFD4-------------------------
  4825. INT 21 - Novell NetWare - FILE SERVER - GET FILE SYSTEM STATISTICS
  4826.     AH = E3h subfn D4h
  4827.     DS:SI -> request buffer (see below)
  4828.     ES:DI -> reply buffer (see below)
  4829. Return: AL = status
  4830.         00h successful
  4831.         C6h no console rights
  4832. Notes:    this function is supported by Advanced NetWare 2.1+
  4833.     the calling workstation must have console operator privileges
  4834. SeeAlso: AH=E3h/SF=0Eh,AH=E3h/SF=C8h,AH=E3h/SF=D9h,AH=E3h/SF=E7h,AH=E3h/SF=E8h
  4835.  
  4836. Format of request buffer:
  4837. Offset    Size    Description
  4838.  00h    WORD    0001h (length of following data)
  4839.  02h    BYTE    D4h (subfunction "Get File System Statistics")
  4840.  
  4841. Format of reply buffer:
  4842. Offset    Size    Description
  4843.  00h    WORD    (call) 0028h (size of following results buffer)
  4844.  02h    DWORD    clock ticks since system started
  4845.  06h    WORD    maximum open files set by configuration
  4846.  08h    WORD    maximum files open concurrently
  4847.  0Ah    WORD    current number of open files
  4848.  0Ch    DWORD    total files opened
  4849.  10h    DWORD    total file read requests
  4850.  14h    DWORD    total file write requests
  4851.  18h    WORD    current changed FATs
  4852.  1Ah    WORD    total changed FATs
  4853.  1Ch    WORD    number of FAT write errors
  4854.  1Eh    WORD    number of fatal FAT write errors
  4855.  20h    WORD    number of FAT scan errors
  4856.  22h    WORD    maximum concurrently-indexed files
  4857.  24h    WORD    current number of indexed files
  4858.  26h    WORD    number of attached indexed files
  4859.  28h    WORD    number of indexed files available
  4860. Note:    all fields except the first are big-endian
  4861. --------N-21E3--SFD5-------------------------
  4862. INT 21 - Novell NetWare - FILE SERVER - GET TRANSACTION TRACKING STATISTICS
  4863.     AH = E3h subfn D5h
  4864.     DS:SI -> request buffer (see below)
  4865.     ES:DI -> reply buffer (see below)
  4866. Return: AL = status
  4867.         00h successful
  4868.         C6h no console rights
  4869. Notes:    this function is supported by Advanced NetWare 2.1+
  4870.     the calling workstation must have console operator privileges
  4871. SeeAlso: AH=E3h/SF=C8h,AH=E3h/SF=CFh,AH=E3h/SF=D0h,AH=E3h/SF=E8h
  4872.  
  4873. Format of request buffer:
  4874. Offset    Size    Description
  4875.  00h    WORD    0001h (length of following data)
  4876.  02h    BYTE    D5h (subfunction "TTS Get Statistics")
  4877.  
  4878. Format of reply buffer:
  4879. Offset    Size    Description
  4880.  00h    WORD    (call) length of following results buffer (max 1BCh)
  4881.  02h    DWORD    (big-endian) clock ticks since system started
  4882.  06h    BYTE    transaction tracking supported if nonzero
  4883.         (all following fields are invalid if zero)
  4884.  07h    BYTE    transaction tracking enabled
  4885.  08h    WORD    (big-endian) transaction volume number
  4886.  0Ah    WORD    (big-endian) maximum simultaneous transactions configured
  4887.  0Ch    WORD    (big-endian) maximum simultaneous transactions since startup
  4888.  0Eh    WORD    (big-endian) current transactions in progress
  4889.  10h    DWORD    (big-endian) total transactions performed
  4890.  14h    DWORD    (big-endian) total write transactions
  4891.  18h    DWORD    (big-endian) total transactions backed out
  4892.  1Ch    WORD    (big-endian) number of unfilled backout requests
  4893.  1Eh    WORD    (big-endian) disk blocks used for transaction tracking
  4894.  20h    DWORD    (big-endian) blocks allocated for tracked-file FATs
  4895.  24h    DWORD    (big-endian) number of file size changes during a transaction
  4896.  28h    DWORD    (big-endian) number of file truncations during a transaction
  4897.  2Ch    BYTE    number of records following
  4898.  2Dh    Active Transaction Records [array]
  4899.     Offset    Size    Description
  4900.      00h    BYTE    logical connection number
  4901.      01h    BYTE    task number
  4902. --------N-21E3--SFD6-------------------------
  4903. INT 21 - Novell NetWare - FILE SERVER - GET DISK CACHE STATISTICS
  4904.     AH = E3h subfn D6h
  4905.     DS:SI -> request buffer (see below)
  4906.     ES:DI -> reply buffer (see below)
  4907. Return: AL = status
  4908.         00h successful
  4909.         C6h no console rights
  4910. Notes:    this function is supported by Advanced NetWare 2.1+
  4911.     the calling workstation must have console operator privileges
  4912. SeeAlso: AH=E3h/SF=C8h,AH=E3h/SF=D5h,AH=E3h/SF=D8h,AH=E3h/SF=D9h,AH=E3h/SF=E6h
  4913.  
  4914. Format of request buffer:
  4915. Offset    Size    Description
  4916.  00h    WORD    0001h (length of following data)
  4917.  02h    BYTE    D6h (subfunction "Get Disk Cache Statistics")
  4918.  
  4919. Format of reply buffer:
  4920. Offset    Size    Description
  4921.  00h    WORD    (call) 004Eh (length of following results buffer)
  4922.  02h    DWORD    clock ticks since system started
  4923.  06h    WORD    number of cache buffers
  4924.  08h    WORD    size of cache buffer in bytes
  4925.  0Ah    WORD    number of dirty cache buffers
  4926.  0Ch    DWORD    number of cache read requests
  4927.  10h    DWORD    number of cache write requests
  4928.  14h    DWORD    number of cache hits
  4929.  18h    DWORD    number of cache misses
  4930.  1Ch    DWORD    number of physical read requests
  4931.  20h    DWORD    number of physical write requests
  4932.  24h    WORD    number of physical read errors
  4933.  26h    WORD    number of physical write errors
  4934.  28h    DWORD    cache get requests
  4935.  2Ch    DWORD    cache full write requests
  4936.  30h    DWORD    cache partial write requests
  4937.  34h    DWORD    background dirty writes
  4938.  38h    DWORD    background aged writes
  4939.  3Ch    DWORD    total cache writes
  4940.  40h    DWORD    number of cache allocations
  4941.  44h    WORD    thrashing count
  4942.  46h    WORD    number of times LRU block was dirty
  4943.  48h    WORD    number of reads on cache blocks not yet filled by writes
  4944.  4Ah    WORD    number of times a fragmented write occurred
  4945.  4Ch    WORD    number of cache hits on unavailable block
  4946.  4Eh    WORD    number of times a cache block was scrapped
  4947. Note:    all fields except the first are big-endian
  4948. --------N-21E3--SFD7-------------------------
  4949. INT 21 - Novell NetWare - FILE SERVER - GET DRIVE MAPPING TABLE
  4950.     AH = E3h subfn D7h
  4951.     DS:SI -> request buffer (see below)
  4952.     ES:DI -> reply buffer (see below)
  4953. Return: AL = status
  4954.         00h successful
  4955.         C6h no console rights
  4956. Notes:    this function is supported by Advanced NetWare 2.1+
  4957.     the calling workstation must have console operator privileges
  4958. SeeAlso: AH=E3h/SF=C8h,AH=E3h/SF=D6h,AH=E3h/SF=D9h,AH=E3h/SF=E6h,AH=E3h/SF=E9h
  4959.  
  4960. Format of request buffer:
  4961. Offset    Size    Description
  4962.  00h    WORD    0001h (length of following data)
  4963.  02h    BYTE    D7h (subfunction "Get Drive Mapping Table")
  4964.  
  4965. Format of reply buffer:
  4966. Offset    Size    Description
  4967.  00h    WORD    (call) 00ECh (length of following results buffer)
  4968.  02h    DWORD    (big-endian) clock tick elapsed since system started
  4969.  06h    BYTE    fault tolerance (SFT) level
  4970.  07h    BYTE    number of logical drives attached to server
  4971.  08h    BYTE    number of physical drives attached to server
  4972.  09h  5 BYTEs    disk channel types (00h none, 01h XT, 02h AT, 03h SCSI, 
  4973.         04h disk coprocessor drive, 32h-FFh value-added drive types)
  4974.  0Eh    WORD    (big-endian) number of outstanding controller commands
  4975.  10h 32 BYTEs    drive mapping table (FFh = no such drive)
  4976.  30h 32 BYTEs    drive mirror table (secondary physical drive, FFh = none)
  4977.  50h 32 BYTEs    dead mirror table (last drive mapped to, FFh if never mirrored)
  4978.  70h    BYTE    physical drive being remirrored (FFh = none)
  4979.  71h    BYTE    reserved
  4980.  72h    DWORD    (big-endian) remirrored block
  4981.  76h 60 BYTEs    SFT error table (internal error counters)
  4982. --------N-21E3--SFD8-------------------------
  4983. INT 21 - Novell NetWare - FILE SERVER - GET PHYSICAL DISK STATISTICS
  4984.     AH = E3h subfn D8h
  4985.     DS:SI -> request buffer (see below)
  4986.     ES:DI -> reply buffer (see below)
  4987. Return: AL = status
  4988.         00h successful
  4989.         C6h no console rights
  4990. Notes:    this function is supported by Advanced NetWare 2.1+
  4991.     the calling workstation must have console operator privileges
  4992. SeeAlso: AH=E3h/SF=C8h,AH=E3h/SF=D9h,AH=E3h/SF=E9h
  4993.  
  4994. Format of request buffer:
  4995. Offset    Size    Description
  4996.  00h    WORD    0002h (length of following data)
  4997.  02h    BYTE    D8h (subfunction "Get Physical Disk Statistics")
  4998.  03h    BYTE    physical disk number
  4999.  
  5000. Format of reply buffer:
  5001. Offset    Size    Description
  5002.  00h    WORD    (call) 005Dh (size of following results record)
  5003.  02h    DWORD    (big-endian) clock ticks since system started
  5004.  06h    BYTE    physical disk channel
  5005.  07h    BYTE    flag: drive removable if nonzero
  5006.  08h    BYTE    physical drive type
  5007.  09h    BYTE    drive number within controller
  5008.  0Ah    BYTE    controller number
  5009.  0Bh    BYTE    controller type
  5010.  0Ch    DWORD    (big-endian) size of drive in 4K disk blocks
  5011.  10h    WORD    (big-endian) number of cylinders on drive
  5012.  12h    BYTE    number of heads
  5013.  13h    BYTE    number of sectors per track
  5014.  14h 64 BYTEs    ASCIZ drive make and model
  5015.  54h    WORD    (big-endian) number of I/O errors
  5016.  56h    DWORD    (big-endian) start of Hot Fix table
  5017.  5Ah    WORD    (big-endian) size of Hot Fix table
  5018.  5Ch    WORD    (big-endian) number of Hot Fix blocks available
  5019.  5Eh    BYTE    flag: Hot Fix disabled if nonzero
  5020. --------N-21E3--SFD9-------------------------
  5021. INT 21 - Novell NetWare - FILE SERVER - GET DISK CHANNEL STATISTICS
  5022.     AH = E3h subfn D9h
  5023.     DS:SI -> request buffer (see below)
  5024.     ES:DI -> reply buffer (see below)
  5025. Return: AL = status
  5026.         00h successful
  5027.         C6h no console rights
  5028. Notes:    this function is supported by Advanced NetWare 2.1+
  5029.     the calling workstation must have console operator privileges
  5030. SeeAlso: AH=E3h/SF=C8h,AH=E3h/SF=D8h,AH=E3h/SF=E6h,AH=E3h/SF=E9h
  5031.  
  5032. Format of request buffer:
  5033. Offset    Size    Description
  5034.  00h    WORD    0002h (length of following data)
  5035.  02h    BYTE    D9h (subfunction "Get Disk Channel Statistics")
  5036.  03h    BYTE    channel number
  5037.  
  5038. Format of reply buffer:
  5039. Offset    Size    Description
  5040.  00h    WORD    (call) 00A8h (size of following results record)
  5041.  02h    DWORD    (big-endian) clock ticks since system started
  5042.  06h    WORD    (big-endian) channel run state (see below)
  5043.  08h    WORD    (big-endian) channel synchronization state (see below)
  5044.  0Ah    BYTE    driver type
  5045.  0Bh    BYTE    major version of driver
  5046.  0Ch    BYTE    minor version of driver
  5047.  0Dh 65 BYTEs    ASCIZ driver description
  5048.  4Eh    WORD    (big-endian) first I/O address used
  5049.  50h    WORD    (big-endian) length of first I/O address
  5050.  52h    WORD    (big-endian) second I/O address used
  5051.  54h    WORD    (big-endian) length of second I/O address
  5052.  56h  3 BYTEs    first shared memory address
  5053.  59h  2 BYTEs    length of first shared memory address
  5054.  5Bh  3 BYTEs    second shared memory address
  5055.  5Eh  2 BYTEs    length of second shared memory address
  5056.  60h    BYTE    first interrupt number in-use flag
  5057.  61h    BYTE    first interrupt number used
  5058.  62h    BYTE    second interrupt number in-use flag
  5059.  63h    BYTE    second interrupt number used
  5060.  64h    BYTE    first DMA channel in-use flag
  5061.  65h    BYTE    first DMA channel used
  5062.  66h    BYTE    second DMA channel in-use flag
  5063.  67h    BYTE    second DMA channel used
  5064.  68h    BYTE    flags
  5065.  69h    BYTE    reserved
  5066.  6Ah 80 BYTEs    ASCIZ configuration description
  5067.  
  5068. Values for channel run state:
  5069.  0000h running
  5070.  0001h being stopped
  5071.  0002h stopped
  5072.  0003h nonfunctional
  5073.  
  5074. Values for channel synchronization state:
  5075.  0000h    not in use
  5076.  0002h    used by NetWare, no other requests
  5077.  0004h    used by NetWare, other requests
  5078.  0006h    in use, not needed by NetWare
  5079.  0008h    in use, needed by NetWare
  5080.  000Ah    channel released, NetWare should use it
  5081. --------N-21E3--SFDA-------------------------
  5082. INT 21 - Novell NetWare - FILE SERVER - GET CONNECTION'S TASK INFORMATION
  5083.     AH = E3h subfn DAh
  5084.     DS:SI -> request buffer (see below)
  5085.     ES:DI -> reply buffer (see below)
  5086. Return: AL = status
  5087.         00h successful
  5088.         C6h no console rights
  5089. Notes:    this function is supported by Advanced NetWare 2.1+
  5090.     the calling workstation must have console operator privileges
  5091. SeeAlso: AH=E3h/SF=C8h,AH=E3h/SF=DBh,AH=E3h/SF=DFh,AH=E3h/SF=E1h,AH=E3h/SF=E5h
  5092.  
  5093. Format of request buffer:
  5094. Offset    Size    Description
  5095.  00h    WORD    0003h (length of following data)
  5096.  02h    BYTE    DAh (subfunction "Get Connection's Task Information")
  5097.  03h    WORD    (big-endian) logical connection number
  5098.  
  5099. Format of reply buffer:
  5100. Offset    Size    Description
  5101.  00h    WORD    (call) size of following results record (max 1FEh)
  5102.  02h    BYTE    lock status of connection (see below)
  5103.  03h    var    Lock Status Information (see below)
  5104.  N    BYTE    number of records following
  5105.  N+1    Active Task Information Records [array]
  5106.     Offset    Size    Description
  5107.      00h    BYTE    task number (01h-FFh)
  5108.      01h    BYTE    task state
  5109.             01h in TTS explicit transaction
  5110.             02h in TTS implicit transaction
  5111.             04h shared fileset lock active
  5112.  
  5113. Values for lock status of connection:
  5114.  00h no locks
  5115.  01h waiting on physical record lock
  5116.  02h waiting on file lock
  5117.  03h waiting on logical record lock
  5118.  04h waiting on semaphore
  5119.  
  5120. Format of Lock Status Information:
  5121. Offset    Size    Description
  5122. ---lock status 00h---
  5123.  no fields
  5124. ---lock status 01h---
  5125.  00h    BYTE    number of waiting task
  5126.  01h    DWORD    start address
  5127.  05h    DWORD    end address
  5128.  09h    BYTE    volume number
  5129.  0Ah    WORD    directory entry number
  5130.  0Ch 14 BYTEs    ASCIZ filename
  5131. ---lock status 02h---
  5132.  00h    BYTE    number of waiting task
  5133.  01h    BYTE    volume number
  5134.  02h    WORD    directory entry number
  5135.  04h 14 BYTEs    ASCIZ filename
  5136. ---lock status 03h---
  5137.  00h    BYTE    number of waiting task
  5138.  01h    BYTE    length of record name
  5139.  02h  N BYTEs    ASCIZ record name
  5140. ---lock status 04h---
  5141.  00h    BYTE    number of waiting task
  5142.  01h    BYTE    length of semaphore's name
  5143.  02h  N BYTEs    ASCIZ semaphore name
  5144. --------N-21E3--SFDB-------------------------
  5145. INT 21 - Novell NetWare - FILE SERVER - GET CONNECTION'S OPEN FILES
  5146.     AH = E3h subfn DBh
  5147.     DS:SI -> request buffer (see below)
  5148.     ES:DI -> reply buffer (see below)
  5149. Return: AL = status
  5150.         00h successful
  5151.         C6h no console rights
  5152. Notes:    this function is supported by Advanced NetWare 2.1+
  5153.     the calling workstation must have console operator privileges
  5154. SeeAlso: AH=E2h/SF=1Ah,AH=E3h/SF=C8h,AH=E3h/SF=DAh,AH=E3h/SF=DCh,AH=E3h/SF=DFh
  5155. SeeAlso: AH=E3h/SF=E1h
  5156.  
  5157. Format of request buffer:
  5158. Offset    Size    Description
  5159.  00h    WORD    0005h (length of following data)
  5160.  02h    BYTE    DBh (subfunction "Get Connection's Open Files")
  5161.  03h    WORD    (big-endian) logical connection number
  5162.  05h    WORD    (big-endian) last record seen (0000h on first call)
  5163.  
  5164. Format of reply buffer:
  5165. Offset    Size    Description
  5166.  00h    WORD    (call) size of following results record (max 1FEh)
  5167.  02h    WORD    next request record (place in "last record" field on next call)
  5168.         0000h if no more records
  5169.  04h    BYTE    number of records following
  5170.  05h    var    array of File Information Records (see below)
  5171.  
  5172. Format of File Information Record:
  5173. Offset    Size    Description
  5174.  00h    BYTE    task number
  5175.  01h    BYTE    lock flags (see below)
  5176.  02h    BYTE    access flags (see below)
  5177.  03h    BYTE    lock type
  5178.         00h no lock
  5179.         FEh file lock
  5180.         FFh locked by Begin Share File Set
  5181.  04h    BYTE    volume number (00h-1Fh)
  5182.  05h    WORD    (big-endian) directory entry
  5183.  07h 14 BYTEs    ASCIZ filename
  5184.  
  5185. Bitfields for lock flags:
  5186.  bit 0    file is locked
  5187.  bit 1    file opened Shareable
  5188.  bit 2    logged
  5189.  bit 3    file opened Normal
  5190.  bit 6    TTS holding lock
  5191.  bit 7    Transaction Flag set on file
  5192.  
  5193. Bitfields for access flags:
  5194.  bit 0    file open for reading by calling station
  5195.  bit 1    file open for writing by calling station
  5196.  bit 2    deny reads by other stations
  5197.  bit 3    deny writes by other stations
  5198.  bit 4    file detached
  5199.  bit 5    TTS Holding Detach
  5200.  bit 6    TTS Holding Open
  5201. --------N-21E3--SFDC-------------------------
  5202. INT 21 - Novell NetWare - FILE SERVER - GET CONNECTIONS USING A FILE
  5203.     AH = E3h subfn DCh
  5204.     DS:SI -> request buffer (see below)
  5205.     ES:DI -> reply buffer (see below)
  5206. Return: AL = status
  5207.         00h successful
  5208.         C6h no console rights
  5209. Notes:    this function is supported by Advanced NetWare 2.1+
  5210.     the calling workstation must have console operator privileges
  5211. SeeAlso: AH=E3h/SF=C8h,AH=E3h/SF=DAh,AH=E3h/SF=DBh,AH=E3h/SF=DFh,AH=E3h/SF=E1h
  5212.  
  5213. Format of request buffer:
  5214. Offset    Size    Description
  5215.  00h    WORD    length of following data (max 104h)
  5216.  02h    BYTE    DCh (subfunction "Get Connections Using a File")
  5217.  03h    WORD    (big-endian) last record (0000h on first call)
  5218.  05h    BYTE    directory handle
  5219.  06h    BYTE    length of file path
  5220.  07h  N BYTEs    ASCIZ file path
  5221.  
  5222. Format of reply buffer:
  5223. Offset    Size    Description
  5224.  00h    WORD    (call) size of following results record (max 1FEh)
  5225.  02h    WORD    (big-endian) count of tasks which have opened or logged file
  5226.  04h    WORD    (big-endian) count of tasks which have opened file
  5227.  06h    WORD    (big-endian) count of opens for reading
  5228.  08h    WORD    (big-endian) count of opens for writing
  5229.  0Ah    WORD    (big-endian) deny read count
  5230.  0Ch    WORD    (big-endian) deny write count
  5231.  0Eh    WORD    next request record (place in "last record" field on next call)
  5232.         0000h if no more records
  5233.  10h    BYTE    locked flag
  5234.         00h not locked exclusively
  5235.         else locked exclusively
  5236.  11h    BYTE    number of records following
  5237.  12h    var    array of File Usage Information Records (see below)
  5238.  
  5239. Format of File Usage Information Record:
  5240. Offset    Size    Description
  5241.  00h    WORD    (big-endian) logical connection number
  5242.  02h    BYTE    task number
  5243.  03h    BYTE    lock flags (see AH=E3h/SF=DBh)
  5244.  04h    BYTE    access flags (see AH=E3h/SF=DBh)
  5245.  05h    BYTE    lock type
  5246.         00h no lock
  5247.         FEh file lock
  5248.         FFh locked by Begin Share File Set
  5249. --------N-21E3--SFDD-------------------------
  5250. INT 21 - Novell NetWare - FILE SERVER - GET PHYSICAL RECORD LOCKS BY CONN&FILE
  5251.     AH = E3h subfn DDh
  5252.     DS:SI -> request buffer (see below)
  5253.     ES:DI -> reply buffer (see below)
  5254. Return: AL = status
  5255.         00h successful
  5256.         C6h no console rights
  5257.         FFh file not open
  5258. Notes:    this function is supported by Advanced NetWare 2.1+
  5259.     the calling workstation must have console operator privileges
  5260. SeeAlso: AH=E3h/SF=C8h,AH=E3h/SF=DEh,AH=E3h/SF=DFh
  5261.  
  5262. Format of request buffer:
  5263. Offset    Size    Description
  5264.  00h    WORD    0016h (length of following data)
  5265.  02h    BYTE    DDh (subfunction "Get Physical Record Locks by Connection and
  5266.             File")
  5267.  03h    WORD    (big-endian) logical connection number
  5268.  05h    WORD    (big-endian) last record seen (0000h on first call)
  5269.  07h    BYTE    volume number (00h-1Fh)
  5270.  08h    WORD    (big-endian) directory handle
  5271.  0Ah 14 BYTEs    ASCIZ filename
  5272.  
  5273. Format of reply buffer:
  5274. Offset    Size    Description
  5275.  00h    WORD    (call) size of following results record (max 1FEh)
  5276.  02h    WORD    next request record (place in "last record" on next call)
  5277.         0000h if no more records
  5278.  04h    BYTE    number of physical record locks
  5279.  05h    BYTE    number of records following
  5280.  06h    var    array of Physical Record Lock Info records (see below)
  5281.  
  5282. Format of Physical Record Lock Info:
  5283. Offset    Size    Description
  5284.  00h    BYTE    task number
  5285.  01h    BYTE    lock status (see below)
  5286.  02h    DWORD    (big-endian) starting offset of record in file
  5287.  06h    DWORD    (big-endian) ending offset of record in file
  5288.  
  5289. Bitfields for lock status:
  5290.  bit 0    exclusive lock
  5291.  bit 1    shareable lock
  5292.  bit 2    logged
  5293.  bit 6    lock held by TTS
  5294. --------N-21E3--SFDE-------------------------
  5295. INT 21 - Novell NetWare - FILE SERVER - GET PHYSICAL RECORD LOCKS BY FILE
  5296.     AH = E3h subfn DEh
  5297.     DS:SI -> request buffer (see below)
  5298.     ES:DI -> reply buffer (see below)
  5299. Return: AL = status
  5300.         00h successful
  5301.         C6h no console rights
  5302.         FFh file not open
  5303. Notes:    this function is supported by Advanced NetWare 2.1+
  5304.     the calling workstation must have console operator privileges
  5305. SeeAlso: AH=E3h/SF=C8h,AH=E3h/SF=DDh,AH=E3h/SF=DFh
  5306.  
  5307. Format of request buffer:
  5308. Offset    Size    Description
  5309.  00h    WORD    length of following data (max 104h)
  5310.  02h    BYTE    DEh (subfunction "Get Physical Record Locks by File")
  5311.  03h    WORD    (big-endian) last record seen (0000h on first call)
  5312.  05h    BYTE    directory handle
  5313.  06h    BYTE    length of filename
  5314.  07h  N BYTEs    ASCIZ filename
  5315.  
  5316. Format of reply buffer:
  5317. Offset    Size    Description
  5318.  00h    WORD    (call) size of following results record (max 1FEh)
  5319.  02h    WORD    next request record (place in "last record" on next call)
  5320.         0000h if no more records
  5321.  04h    BYTE    number of physical record locks
  5322.  05h    BYTE    number of records following
  5323.  06h    var    array of Physical Record Lock Info records (see below)
  5324.  
  5325. Format of Physical Record Lock Info:
  5326. Offset    Size    Description
  5327.  00h    WORD    (big-endian) number of tasks logging record
  5328.  02h    WORD    (big-endian) number of tasks with shareable lock
  5329.  04h    DWORD    (big-endian) starting offset of record in file
  5330.  08h    DWORD    (big-endian) ending offset of record in file
  5331.  0Ch    WORD    (big-endian) logical connection number
  5332.  0Eh    BYTE    task number
  5333.  0Fh    BYTE    lock type
  5334.         00h none
  5335.         FEh file lock
  5336.         FFh Begin Share File Set lock
  5337. --------N-21E3--SFDF-------------------------
  5338. INT 21 - Novell NetWare - FILE SERVER - GET LOGICAL RECORDS BY CONNECTION
  5339.     AH = E3h subfn DFh
  5340.     DS:SI -> request buffer (see below)
  5341.     ES:DI -> reply buffer (see below)
  5342. Return: AL = status
  5343.         00h successful
  5344.         C6h no console rights
  5345. Notes:    this function is supported by Advanced NetWare 2.1+
  5346.     the calling workstation must have console operator privileges
  5347. SeeAlso: AH=E3h/SF=C8h,AH=E3h/SF=DDh,AH=E3h/SF=E0h,AH=E3h/SF=E2h
  5348.  
  5349. Format of request buffer:
  5350. Offset    Size    Description
  5351.  00h    WORD    0005h (length of following data)
  5352.  02h    BYTE    DFh (subfunction "Get Logical Records By Connection")
  5353.  03h    WORD    (big-endian) logical connection number
  5354.  05h    WORD    (big-endian) last record seen (0000h on first call)
  5355.  
  5356. Format of reply buffer:
  5357. Offset    Size    Description
  5358.  00h    WORD    (call) size of following results record (max 1FEh)
  5359.  02h    WORD    next request record (place in "last record" field on next call)
  5360.         0000h if no more locked records
  5361.  09h    BYTE    number of records following
  5362.  0Ah    var    array of Logical Lock Information Records (see below)
  5363.  
  5364. Format of Logical Lock Information Record:
  5365. Offset    Size    Description
  5366.  00h    BYTE    task number
  5367.  01h    BYTE    lock status (see AH=E3h/SF=DDh)
  5368.  02h    BYTE    length of logical lock's name
  5369.  03h  N BYTEs    logical lock's name
  5370. --------N-21E3--SFE0-------------------------
  5371. INT 21 - Novell NetWare - FILE SERVER - GET LOGICAL RECORD INFORMATION
  5372.     AH = E3h subfn E0h
  5373.     DS:SI -> request buffer (see below)
  5374.     ES:DI -> reply buffer (see below)
  5375. Return: AL = status
  5376.         00h successful
  5377.         C6h no console rights
  5378. Notes:    this function is supported by Advanced NetWare 2.1+
  5379.     the calling workstation must have console operator privileges
  5380. SeeAlso: AH=E3h/SF=C8h,AH=E3h/SF=DDh,AH=E3h/SF=DFh,AH=E3h/SF=E2h
  5381.  
  5382. Format of request buffer:
  5383. Offset    Size    Description
  5384.  00h    WORD    length of following data (max 67h)
  5385.  02h    BYTE    E0h (subfunction "Get Logical Record Information")
  5386.  03h    WORD    (big-endian) last record seen (0000h on first call)
  5387.  05h    BYTE    length of logical record's name
  5388.  06h  N BYTEs    logical record's name
  5389.  
  5390. Format of reply buffer:
  5391. Offset    Size    Description
  5392.  00h    WORD    (call) size of following results record (max 200h)
  5393.  02h    WORD    (big-endian) number of logical connections logging the record
  5394.  04h    WORD    (big-endian) number of logical connections with shareable lock
  5395.  06h    WORD    (big-endian) next request record (place in "last record" field
  5396.              on next call)
  5397.  08h    BYTE    locked exclusively if nonzero
  5398.  09h    BYTE    number of records following
  5399.  0Ah    var    array of Task Information Records (see below)
  5400.  
  5401. Format of Task Information Record:
  5402. Offset    Size    Description
  5403.  00h    WORD    (big-endian) logical connection number
  5404.  02h    BYTE    task number
  5405.  03h    BYTE    lock status (see AH=E3h/SF=DDh)
  5406. --------N-21E3--SFE1-------------------------
  5407. INT 21 - Novell NetWare - FILE SERVER - GET CONNECTION'S SEMAPHORES
  5408.     AH = E3h subfn E1h
  5409.     DS:SI -> request buffer (see below)
  5410.     ES:DI -> reply buffer (see below)
  5411. Return: AL = status
  5412.         00h successful
  5413.         C6h no console rights
  5414. Notes:    this function is supported by Advanced NetWare 2.1+
  5415.     the calling workstation must have console operator privileges
  5416. SeeAlso: AH=E3h/SF=C8h,AH=E3h/SF=DBh,AH=E3h/SF=DFh,AH=E3h/SF=E2h
  5417.  
  5418. Format of request buffer:
  5419. Offset    Size    Description
  5420.  00h    WORD    0005h (length of following data)
  5421.  02h    BYTE    E1h (subfunction "Get Connection's Semaphores")
  5422.  03h    WORD    (big-endian) logical connection number
  5423.  05h    WORD    (big-endian) last record seen (0000h on first call)
  5424.  
  5425. Format of reply buffer:
  5426. Offset    Size    Description
  5427.  00h    WORD    (call) size of following results record (max 1FEh)
  5428.  02h    WORD    next request record (place in "last record" field on next call)
  5429.  04h    BYTE    number of records following
  5430.  05h    var    array of Semaphore Information Records
  5431.  
  5432. Format of Semaphore Information Record:
  5433. Offset    Size    Description
  5434.  00h    WORD    (big-endian) open count
  5435.  02h    BYTE    semaphore value (-128 to 127)
  5436.  03h    BYTE    task number
  5437.  04h    BYTE    lock type
  5438.  05h    BYTE    length of semaphore's name
  5439.  06h  N BYTEs    semaphore's name
  5440.      14 BYTEs    filename
  5441. --------N-21E3--SFE2-------------------------
  5442. INT 21 - Novell NetWare - FILE SERVER - GET SEMAPHORE INFORMATION
  5443.     AH = E3h subfn E2h
  5444.     DS:SI -> request buffer (see below)
  5445.     ES:DI -> reply buffer (see below)
  5446. Return: AL = status
  5447.         00h successful
  5448.         C6h no console rights
  5449. Notes:    this function is supported by Advanced NetWare 2.1+
  5450.     the calling workstation must have console operator privileges
  5451. SeeAlso: AH=E3h/SF=C8h,AH=E3h/SF=E1h
  5452.  
  5453. Format of request buffer:
  5454. Offset    Size    Description
  5455.  00h    WORD    length of following data (max 83h)
  5456.  02h    BYTE    E2h (subfunction "Get LAN Driver's Configuration Information")
  5457.  03h    WORD    (big-endian) last record seen (0000h on first call)
  5458.  05h    BYTE    length of semaphore's name (01h-7Fh)
  5459.  06h  N BYTEs    semaphore's name
  5460.  
  5461. Format of reply buffer:
  5462. Offset    Size    Description
  5463.  00h    WORD    (call) size of following results buffer (max 1FEh)
  5464.  02h    WORD    next request record (place in "last record" on next call)
  5465.         0000h if no more
  5466.  04h    WORD    (big-endian) number of logical connections opening semaphore
  5467.  06h    BYTE    semaphore value (-127 to 128)
  5468.  07h    BYTE    number of records following
  5469.  08h    var    array of Semaphore Information records (see below)
  5470.  
  5471. Format of Semaphore Information:
  5472. Offset    Size    Description
  5473.  00h    WORD    (big-endian) logical connection number
  5474.  02h    BYTE    task number
  5475. --------N-21E3--SFE3-------------------------
  5476. INT 21 - Novell NetWare - FILE SERVER - GET LAN DRIVER'S CONFIGURATION INFO
  5477.     AH = E3h subfn E3h
  5478.     DS:SI -> request buffer (see below)
  5479.     ES:DI -> reply buffer (see below)
  5480. Return: AL = status
  5481.         00h successful
  5482.         C6h no console rights
  5483. Notes:    this function is supported by Advanced NetWare 2.1+
  5484.     the calling workstation must have console operator privileges
  5485. SeeAlso: AH=E3h/SF=C8h,AH=E3h/SF=E7h,AH=E3h/SF=E8h
  5486.  
  5487. Format of request buffer:
  5488. Offset    Size    Description
  5489.  00h    WORD    0002h (length of following data)
  5490.  02h    BYTE    E3h (subfunction "Get LAN Driver's Configuration Information")
  5491.  03h    BYTE    LAN board (00h-03h)
  5492.  
  5493. Format of reply buffer:
  5494. Offset    Size    Description
  5495.  00h    WORD    (call) 00ACh (size of following results buffer)
  5496.  02h  4 BYTEs    network number
  5497.  06h  6 BYTEs    node number
  5498.  0Ch    BYTE    LAN driver installed (00h no--remaining fields invalid)
  5499.  0Dh    BYTE    option number selected at configuration time
  5500.  0Eh 160 BYTEs    configuration text
  5501.         ASCIZ hardware type
  5502.         ASCIZ hardware settings
  5503. --------N-21E3--SFE5-------------------------
  5504. INT 21 - Novell NetWare - FILE SERVER - GET CONNECTION'S USAGE STATISTICS
  5505.     AH = E3h subfn E5h
  5506.     DS:SI -> request buffer (see below)
  5507.     ES:DI -> reply buffer (see below)
  5508. Return: AL = status
  5509.         00h successful
  5510.         C6h no console rights
  5511. Notes:    this function is supported by Advanced NetWare 2.1+
  5512.     one must have console operator privileges to get statistics for logical
  5513.       connections other than one's own
  5514. SeeAlso: AH=E3h/SF=C8h,AH=E3h/SF=DAh,AH=E3h/SF=DBh,AH=E3h/SF=E1h
  5515.  
  5516. Format of request buffer:
  5517. Offset    Size    Description
  5518.  00h    WORD    0003h (length of following data)
  5519.  02h    BYTE    E5h (subfunction "Get Connection's Usage Statistics")
  5520.  03h    WORD    (big-endian) logical connection number
  5521.  
  5522. Format of reply buffer:
  5523. Offset    Size    Description
  5524.  00h    WORD    (call) 0014h (size of following results record)
  5525.  02h    DWORD    (big-endian) clock ticks since server started
  5526.  06h  6 BYTEs    bytes read
  5527.  0Ch  6 BYTEs    bytes written
  5528.  12h    DWORD    (big-endian) total request packets
  5529. --------N-21E3--SFE6-------------------------
  5530. INT 21 - Novell NetWare - FILE SERVER - GET BINDERY OBJECT DISK SPACE LEFT
  5531.     AH = E3h subfn E6h
  5532.     DS:SI -> request buffer (see below)
  5533.     ES:DI -> reply buffer (see below)
  5534. Return: AL = status
  5535.         00h successful
  5536.         C6h no console rights
  5537. Notes:    this function is supported by Advanced NetWare 2.1+
  5538.     one must have console operator privileges to get the free space for
  5539.       other bindery objects
  5540. SeeAlso: AH=E3h/SF=C8h,AH=E3h/SF=E8h,AH=E3h/SF=E9h
  5541.  
  5542. Format of request buffer:
  5543. Offset    Size    Description
  5544.  00h    WORD    0005h (length of following data)
  5545.  02h    BYTE    E6h (subfunction "Get Bindery Object Disk Space Left")
  5546.  03h    DWORD    (big-endian) object ID
  5547.  
  5548. Format of reply buffer:
  5549. Offset    Size    Description
  5550.  00h    WORD    (call) 000Fh (size of following results buffer)
  5551.  02h    DWORD    (big-endian) clock ticks elapsed since server started
  5552.  06h    DWORD    (big-endian) object ID
  5553.  0Ah    DWORD    (big-endian) 4K disk blocks available to user
  5554.  0Eh    BYTE    restrictions (00h enforced, FFh not enforced)
  5555. --------N-21E3--SFE7-------------------------
  5556. INT 21 - Novell NetWare - FILE SERVER - GET FILE SERVER LAN I/O STATISTICS
  5557.     AH = E3h subfn E7h
  5558.     DS:SI -> request buffer (see below)
  5559.     ES:DI -> reply buffer (see below)
  5560. Return: AL = status
  5561.         00h successful
  5562. Note:    this function is supported by Advanced NetWare 2.1+
  5563. SeeAlso: AH=E3h/SF=0Eh,AH=E3h/SF=11h,AH=E3h/SF=D3h,AH=E3h/SF=E8h,AH=E7h
  5564.  
  5565. Format of request buffer:
  5566. Offset    Size    Description
  5567.  00h    WORD    0001h (length of following data)
  5568.  02h    BYTE    E7h (subfunction "Get File Server LAN I/O Statistics")
  5569.  
  5570. Format of reply buffer:
  5571. Offset    Size    Description
  5572.  00h    WORD    (call) 0042h (size of following results buffer)
  5573.  02h    DWORD    clock ticks since system started
  5574.  06h    WORD    total routing buffers
  5575.  08h    WORD    maximum routing buffers used
  5576.  0Ah    WORD    current routing buffers used
  5577.  0Ch    DWORD    total file service packets
  5578.  10h    WORD    number of file service packets buffered
  5579.  12h    WORD    number of invalid connection packets
  5580.  14h    WORD    packets with bad logical connection numbers
  5581.  16h    WORD    number of packets received during processing
  5582.  18h    WORD    number of requests reprocessed
  5583.  1Ah    WORD    packets with bad sequence numbers
  5584.  1Ch    WORD    number of duplicate replies sent
  5585.  1Eh    WORD    number of acknowledgements sent
  5586.  20h    WORD    number of packets with bad request types
  5587.  22h    WORD    requests to attach to ws for which a request is being processed
  5588.  24h    WORD    requests to attach from ws which is already attaching
  5589.  26h    WORD    number of forged detach requests
  5590.  28h    WORD    detach requests with bad connection number
  5591.  2Ah    WORD    requests to detach from ws for which requests pending
  5592.  2Ch    WORD    number of cancelled replies
  5593.  2Eh    WORD    packets discarded due to excessive hop count
  5594.  30h    WORD    packets discarded due to unknown net
  5595.  32h    WORD    incoming packets discarded for lack of DGroup buffer
  5596.  34h    WORD    outgoing packets discarded due to lack of buffer
  5597.  36h    WORD    received packets destined for B,C, or D side drivers
  5598.  38h    DWORD    number of NetBIOS packets propagated through net
  5599.  3Ch    DWORD    total number of non-file-service packets
  5600.  40h    DWORD    total number of routed packets
  5601. Note:    all fields except the first are big-endian
  5602. --------N-21E3--SFE8-------------------------
  5603. INT 21 - Novell NetWare - FILE SERVER - GET FILE SERVER MISC INFORMATION
  5604.     AH = E3h subfn E8h
  5605.     DS:SI -> request buffer (see below)
  5606.     ES:DI -> reply buffer (see below)
  5607. Return: AL = status
  5608.         00h successful
  5609.         C6h no console rights
  5610. Note:    this function is supported by Advanced NetWare 2.1+
  5611. SeeAlso: AH=E3h/SF=0Eh,AH=E3h/SF=11h,AH=E3h/SF=CDh,AH=E3h/SF=E7h
  5612.  
  5613. Format of request buffer:
  5614. Offset    Size    Description
  5615.  00h    WORD    0001h (length of following data)
  5616.  02h    BYTE    E8h (subfunction "Get File Server Misc Information")
  5617.  
  5618. Format of reply buffer:
  5619. Offset    Size    Description
  5620.  00h    WORD    (call) size of following results buffer (max 0048h)
  5621.  02h    DWORD    (big-endian) clock ticks since system started
  5622.  06h    BYTE    CPU type
  5623.         00h Motorola 68000
  5624.         01h Intel 8086, 8088, or V20
  5625.         02h Intel 80286+
  5626.  07h    BYTE    reserved
  5627.  08h    BYTE    number of service processes in server
  5628.  09h    BYTE    server utilization in percent
  5629.  0Ah    WORD    (big-endian) maximum bindery objects set by configuration
  5630.         0000h = unlimited
  5631.  0Ch    WORD    (big-endian) maximum number of bindery objects used
  5632.  0Eh    WORD    (big-endian) current number of bindery objects in use
  5633.  10h    WORD    (big-endian) total server memory in K
  5634.  12h    WORD    (big-endian) wasted server memory in K
  5635.         normally 0000h
  5636.  14h    WORD    number of records following (01h-03h)
  5637.  16h    var    array of Dynamic Memory Information records (see below)
  5638.  
  5639. Format of Dynamic Memory Information:
  5640. Offset    Size    Description
  5641.  00h    DWORD    (big-endian) total dynamic space
  5642.  04h    DWORD    (big-endian) maximum dynamic space used
  5643.  08h    DWORD    (big-endian) current dynamic space usage
  5644. --------N-21E3--SFE9-------------------------
  5645. INT 21 - Novell NetWare - DIRECTORY SERVICES - GET VOLUME INFORMATION
  5646.     AH = E3h subfn E9h
  5647.     DS:SI -> request buffer (see below)
  5648.     ES:DI -> reply buffer (see below)
  5649. Return: AL = status
  5650.         00h successful
  5651. Notes:    this function is supported by Advanced NetWare 2.1+
  5652. SeeAlso: AH=DAh,AH=E2h/SF=15h
  5653.  
  5654. Format of request buffer:
  5655. Offset    Size    Description
  5656.  00h    WORD    0002h (length of following data)
  5657.  02h    BYTE    E9h (subfunction "Get Volume Information")
  5658.  03h    BYTE    directory handle
  5659.  
  5660. Format of reply buffer:
  5661. Offset    Size    Description
  5662.  00h    WORD    (call) 0028h (length of following results buffer)
  5663.  02h    DWORD    (big-endian) elapsed system time
  5664.  06h    BYTE    volume number
  5665.  07h    BYTE    logical drive number
  5666.  08h    WORD    (big-endian) sectors per block
  5667.  0Ah    WORD    (big-endian) starting block
  5668.  0Ch    WORD    (big-endian) total blocks on volume
  5669.  0Eh    WORD    (big-endian) blocks available on volume
  5670.  10h    WORD    (big-endian) total directory slots
  5671.  12h    WORD    (big-endian) directory slots available
  5672.  14h    WORD    (big-endian) maximum directory entries actually used
  5673.  16h    BYTE    flag: volume hashed if nonzero
  5674.  17h    BYTE    flag: volume cached if nonzero
  5675.  18h    BYTE    flag: volume removable if nonzero
  5676.  19h    BYTE    flag: volume mounted if nonzero
  5677.  1Ah 16 BYTEs    NUL-padded volume name
  5678. --------N-21E4-------------------------------
  5679. INT 21 O - Novell NetWare - SET FILE ATTRIBUTES (FCB)
  5680.     AH = E4h
  5681.     CL = file attributes (see below)
  5682.     DX:DX -> FCB (see AH=0Fh)
  5683. Return: AL = error code
  5684. Note:    this function was added in NetWare 4.0, but was removed some time prior
  5685.       to Advanced NetWare 2.15, and is no longer listed in current Novell
  5686.       documentation
  5687. SeeAlso: AX=4301h
  5688.  
  5689. Bitfields for file attributes:
  5690.  bit 0    read only
  5691.  bit 1    hidden
  5692.  bit 2    system
  5693.  bit 7    shareable
  5694. --------v-21E4-------------------------------
  5695. INT 21 - VIRUS - "Anarkia" - INSTALLATION CHECK
  5696.     AH = E4h
  5697. Return: AH = 04h if resident
  5698. SeeAlso: AH=E1h"VIRUS",AH=E7h"VIRUS"
  5699. --------T-21E400-----------------------------
  5700. INT 21 - DoubleDOS - INSTALLATION CHECK/PROGRAM STATUS
  5701.     AX = E400h
  5702. Return: AL = 00h if DoubleDOS not present
  5703.        = 01h if running in visible DoubleDOS partition
  5704.        = 02h if running in the invisible DoubleDOS partition
  5705. SeeAlso: AH=E5h"DoubleDOS",AX=F400h
  5706. --------E-21E400-----------------------------
  5707. INT 21 - OS/286, OS/386 - CHAIN TO REAL-MODE HANDLER
  5708.     AX = E400h
  5709.     ???
  5710. Return: ???
  5711. Note:    protected mode only???
  5712. --------E-21E402-----------------------------
  5713. INT 21 - OS/286, OS/386 - SET PROTECTED-MODE TASK GATE
  5714.     AX = E402h
  5715.     ???
  5716. Return: ???
  5717. Note:    protected mode only???
  5718. SeeAlso: AX=E403h
  5719. --------E-21E403-----------------------------
  5720. INT 21 - OS/286, OS/386 - REMOVE PROTECTED-MODE TASK GATE
  5721.     AX = E403h
  5722.     ???
  5723. Return: ???
  5724. Note:    protected mode only???
  5725. SeeAlso: AX=E402h
  5726. --------N-21E5-------------------------------
  5727. INT 21 O - Novell NetWare - UPDATE FILE SIZE (FCB)
  5728.     AH = E5h
  5729.     DS:DX -> FCB (see AH=0Fh)
  5730. Return: AL = (unreliable) return code
  5731. Notes:    this function was added in NetWare 4.0, but was removed some time prior
  5732.       to Advanced NetWare 2.15, and is no longer listed in current Novell
  5733.       documentation
  5734.     on success, NetWare sets AL to zero; on errors it restores AL
  5735. Return: AL = error code
  5736. --------T-21E5-------------------------------
  5737. INT 21 - DoubleDOS - OTHER PROGRAM STATUS
  5738.     AH = E5h
  5739. Return: AL = 00h no program in other partition
  5740.        = 01h program in other partition is running
  5741.        = 02h program in other partition is suspended
  5742. SeeAlso: AX=E400h"DoubleDOS",AH=F5h"DoubleDOS"
  5743. --------E-21E500-----------------------------
  5744. INT 21 - OS/286, OS/386 - HEAP MANAGEMENT STRATEGY
  5745.     AX = E500h
  5746.     ???
  5747. Return: ???
  5748. SeeAlso: AX=E501h
  5749. --------E-21E501-----------------------------
  5750. INT 21 - OS/286, OS/386 - FORCE HEAP COMPACTION
  5751.     AX = E501h
  5752.     ???
  5753. Return: ???
  5754. SeeAlso: AX=E500h
  5755. --------N-21E6-------------------------------
  5756. INT 21 O - Novell NetWare - COPY FILE TO FILE (FCB)
  5757.     AH = E6h
  5758.     CX:DX = number of bytes to copy
  5759.     DS:SI -> opened source FCB
  5760.     ES:DI -> opened destination FCB
  5761. Return: AL = error code
  5762.     CX = ???
  5763.     DX = ???
  5764. Note:    this function was added in NetWare 4.0, but was removed some time prior
  5765.       to Advanced NetWare 2.15, and is no longer listed in current Novell
  5766.       documentation
  5767. --------E-21E6-------------------------------
  5768. INT 21 P - OS/286, OS/386 - ISSUE REAL PROCEDURE SIGNAL FROM PROTECTED MODE
  5769.     AH = E6h
  5770.     ???
  5771. Return: ???
  5772. SeeAlso: AH=E2h"OS/286"
  5773. --------N-21E7-------------------------------
  5774. INT 21 - Novell NetWare - FILE SERVER - GET FILE SERVER DATE AND TIME
  5775.     AH = E7h
  5776.     DS:DX -> date/time buffer (see below)
  5777. Return: AL = error code
  5778.         00h successful
  5779.         FFh unsuccessful
  5780. Note:    this function is supported by NetWare 4.0+, Advanced NetWare 1.0+,
  5781.       Alloy NTNX, and Banyan VINES
  5782. SeeAlso: AH=2Ah,AH=2Ch,AX=5FC0h,AH=E3h/SF=CAh
  5783.  
  5784. Format of date/time buffer:
  5785. Offset    Size    Description
  5786.  00h    BYTE    year (80-99 = 1980-1999, 0-79 = 2000-2079)
  5787.  01h    BYTE    month (1=Jan)
  5788.  02h    BYTE    day
  5789.  03h    BYTE    hours
  5790.  04h    BYTE    minutes
  5791.  05h    BYTE    seconds
  5792.  06h    BYTE    day of week (0 = Sunday) (Novell and NTNX only)
  5793. --------E-21E7-------------------------------
  5794. INT 21 - OS/286, OS/386 - CREATE CODE SEGMENT
  5795.     AH = E7h
  5796.     ???
  5797. Return: ???
  5798. SeeAlso: AH=E8h"OS/286",AH=E9h"OS/286",AH=EAh"OS/286"
  5799. --------v-21E7-------------------------------
  5800. INT 21 - VIRUS - "Spyer"/"Kiev" - INSTALLATION CHECK
  5801.     AH = E7h
  5802. Return: AH = 78h if resident
  5803. SeeAlso: AH=E4h"VIRUS",AX=EC59h
  5804. --------N-21E8-------------------------------
  5805. INT 21 O - Novell NetWare, Alloy NTNX - SET FCB RE-OPEN MODE
  5806.     AH = E8h
  5807.     DL = mode
  5808.         00h no automatic re-open
  5809.         01h auto re-open
  5810. Return: AL = error code
  5811. Desc:    provided backward compatibility with a bug in CP/M and early DOS vers
  5812. Note:    this function was added in NetWare 4.6, but was removed some time prior
  5813.       to Advanced NetWare 2.15, and is no longer listed in current Novell
  5814.       documentation
  5815. --------E-21E8-------------------------------
  5816. INT 21 - OS/286, OS/386 - SEGMENT CREATION
  5817.     AH = E8h
  5818.     AL = type
  5819.         00h data segment
  5820.         01h data window/alias
  5821.         02h real segment
  5822.         03h real window/alias
  5823.         06h shareable segment
  5824.     ???
  5825. Return: ???
  5826. SeeAlso: AH=E7h"OS/286",AH=E9h"OS/286"
  5827. --------T-21E8-------------------------------
  5828. INT 21 - DoubleDOS - SET/RESET KEYBOARD CONTROL FLAGS
  5829.     AH = E8h
  5830.     AL = 00h set flags for this program
  5831.        = 01h set flags for other program
  5832.     DX = keyboard control flags (see below)
  5833. Return: DX = previous flags
  5834. Notes:    disabling Ctrl-PrtSc will allow the program to intercept the keystroke;
  5835.       disabling any of the other keystrokes disables them completely
  5836.     identical to AH=F8h
  5837. SeeAlso: AH=E1h"DoubleDOS",AH=E2h"DoubleDOS",AH=E3h"DoubleDOS"
  5838. SeeAlso: AH=F8h"DoubleDOS"
  5839.  
  5840. Bitfields for keyboard control flags:
  5841.  bit 0    menu
  5842.  bit 1    exchange
  5843.  bit 2    entire keyboard enable/disable
  5844.  bit 3    Ctrl-C
  5845.  bit 4    Ctrl-PrtSc
  5846.  bit 5    Alt/Erase
  5847.  bit 6    Ctrl-Break
  5848.  bit 7    Ctrl-NumLock
  5849.  bit 8    shift-PrtSc
  5850.  bit 9-13 undefined
  5851.  bit 14    cancel key (clear keyboard buffer)
  5852.  bit 15    suspend key
  5853. Note:    setting a bit enables the corresponding key or operatin, clearing a
  5854.       bit disables it
  5855. --------E-21E9-------------------------------
  5856. INT 21 P - OS/286, OS/386 - CHANGE SEGMENTS
  5857.     AH = E9h
  5858.     AL = function
  5859.         01h change code segment parameters
  5860.         02h    change data segment parameters
  5861.         05h adjust segment limit
  5862.         06h change segment base address
  5863.     ???
  5864. Return: ???
  5865. SeeAlso: AH=E7h"OS/286",AH=E8h"OS/286",AH=EAh"OS/286",AH=EDh"OS/286"
  5866. SeeAlso: INT 31/AX=0007h,INT 31/AX=0008h
  5867. --------T-21E9-------------------------------
  5868. INT 21 - DoubleDOS - SET TIMESHARING PRIORITY
  5869.     AH = E9h
  5870.     AL = 00h visible program gets 70%, invisible gets 30% (default)
  5871.        = 01h visible program gets 50%, invisible gets 50%
  5872.        = 02h visible program gets 30%, invisible gets 70%
  5873.        = 03h Top program gets 70%, bottom program gets 30%
  5874.        = 04h Top program gets 30%, bottom program gets 70%
  5875.        = 05h get current priority
  5876.         Return: AL = priority setting
  5877. Note:    identical to AH=F9h
  5878. SeeAlso: AH=EAh"DoubleDOS",AH=EBh"DoubleDOS",AH=F9h"DoubleDOS"
  5879. --------N-21E900-----------------------------
  5880. INT 21 - Novell NetWare - DIRECTORY SERVICES - GET DIRECTORY HANDLE
  5881.     AX = E900h
  5882.     DX = drive number to check (0 = A:, ..., 25 = Z:, 26 ... 31)
  5883. Return: AL = directory handle
  5884.     AH = flags (drive not mapped if none set)
  5885.         bit 0: permanent handle
  5886.         bit 1: temporary handle
  5887.         bit 7: mapped to local drive
  5888. Note:    this function is supported by NetWare 4.0+, Advanced NetWare 1.0+, and
  5889.       Alloy NTNX
  5890. SeeAlso: AH=E2h/SF=00h,AH=E2h/SF=01h,AH=E2h/SF=0Ah
  5891. --------N-21E905-----------------------------
  5892. INT 21 - Novell NetWare shell 3.01 - MAP A FAKE ROOT DIRECTORY
  5893.     AX = E905h
  5894.     BL = drive number (0=default, 1=A:, ...)
  5895.     DS:DX -> ASCIZ path for fake root (may include server name or be empty)
  5896. Return: CF set on error
  5897.         AL = error code (03h,0Fh,11h) (see AH=59h)
  5898.     CF clear if successful
  5899. Note:    if drive is not currently mapped, a drive mapping will be created
  5900. SeeAlso: AX=E906h
  5901. --------N-21E906-----------------------------
  5902. INT 21 - Novell NetWare shell 3.01 - DELETE FAKE ROOT DIRECTORY
  5903.     AX = E906h
  5904.     BL = drive number (0=default, 1=A:, ...)
  5905. Note:    drive remains mapped
  5906. SeeAlso: AX=E905h
  5907. --------N-21E907-----------------------------
  5908. INT 21 - Novell NetWare shell 3.01 - GET RELATIVE DRIVE DEPTH
  5909.     AX = E907h
  5910.     BL = drive number (0=default, 1=A:, ...)
  5911. Return: AL = number of directories below the fake root
  5912.         FFh if no fake root assigned
  5913. SeeAlso: AX=E905h
  5914. --------N-21E908BL00-------------------------
  5915. INT 21 - Novell NetWare shell 3.01 - SET SHOW DOTS
  5916.     AX = E908h
  5917.     BL = 00h    don't return '.' or '..' during directory scans
  5918.        = nonzero    directory scans will return '.' or '..' entries
  5919. Return: BL = previous show-dots setting
  5920. --------N-21EA-------------------------------
  5921. INT 21 - Novell NetWare, Alloy NTNX - RETURN SHELL VERSION
  5922.     AH = EAh
  5923.     AL = return version environment string
  5924.         00h        don't return string
  5925.         nonzero    return string in 40-byte buffer pointed to by ES:DI
  5926.         Return: buffer filled with three null-terminated entries:
  5927.             major operating system
  5928.             version
  5929.             hardware type
  5930. Return: AH = operating system (00h = MS-DOS)
  5931.     AL = hardware type
  5932.         00h IBM PC
  5933.         01h Victor 9000
  5934.     BH = major shell version
  5935.     BL = minor shell version
  5936.     CH = (v3.01+) shell type
  5937.         00h conventional memory
  5938.         01h expanded memory
  5939.         02h extended memory
  5940.     CL = shell revision number
  5941. Note:    this function is supported by NetWare 4.6 and Advanced NetWare 1.0+
  5942. --------T-21EA-------------------------------
  5943. INT 21 - DoubleDOS - TURN OFF TASK SWITCHING
  5944.     AH = EAh
  5945. Return: task switching turned off
  5946. SeeAlso: AH=E9h"DoubleDOS",AH=EBh"DoubleDOS",AH=FAh"DoubleDOS"
  5947. SeeAlso: INT FA"DoubleDOS"
  5948. --------E-21EA-------------------------------
  5949. INT 21 - OS/286, OS/386 - ALLOCATE HUGE SEGMENT
  5950.     AH = EAh
  5951.     ???
  5952. Return: ???
  5953. Note:    protected mode only???
  5954. SeeAlso: AH=E7h"OS/286",AH=E8h"OS/286",AH=E9h"OS/286"
  5955. --------N-21EB-------------------------------
  5956. INT 21 - Novell NetWare - SYNCHRONIZATION SERVICES - LOG FILE
  5957.     AH = EBh
  5958.     DS:DX -> ASCIZ filename
  5959.     if function C6h lock mode 01h:
  5960.         AL = flags
  5961.         00h log file only
  5962.         01h lock as well as log file
  5963.             BP = lock timeout in timer ticks (1/18 second)
  5964.             0000h = don't wait if file already locked
  5965. Return: AL = error code
  5966.         00h successful
  5967.         96h no dynamic memory for file
  5968.         FEh timed out
  5969.         FFh failed
  5970. Desc:    add the location and size of the specified file to the log table and
  5971.       optionally lock the file
  5972. Note:    this function is supported by NetWare 4.6+, Advanced NetWare 1.0+, and
  5973.       Alloy NTNX
  5974. SeeAlso: AH=BCh"NetWare",AH=CAh,AH=D0h,AH=ECh"NetWare",AH=EDh"NetWare"
  5975. --------T-21EB-------------------------------
  5976. INT 21 - DoubleDOS - TURN ON TASK SWITCHING
  5977.     AH = EBh
  5978. Return: task switching turned on
  5979. SeeAlso: AH=E9h"DoubleDOS",AH=EAh"DoubleDOS",AH=FBh"DoubleDOS"
  5980. SeeAlso: INT FB"DoubleDOS"
  5981. --------E-21EB00-----------------------------
  5982. INT 21 - OS/386 VMM - GET A PAGE TABLE ENTRY BY LINEAR ADDRESS
  5983.     AX = EB00h
  5984.     ???
  5985. Return: ???
  5986. Note:    protected mode only???
  5987. SeeAlso: AX=EB02h,AX=EB04h,INT 31/AX=0506h
  5988. --------E-21EB02-----------------------------
  5989. INT 21 - OS/386 VMM - GET A PAGE TABLE ENTRY BY 16-BIT SEGMENT:OFFSET
  5990.     AX = EB02h
  5991.     ???
  5992. Return: ???
  5993. Note:    protected mode only???
  5994. SeeAlso: AX=EB00h,AX=EB04h
  5995. --------E-21EB03-----------------------------
  5996. INT 21 - OS/386 VMM - FREE MAPPED PAGES
  5997.     AX = EB03h
  5998.     ???
  5999. Return: ???
  6000. Note:    protected mode only???
  6001. SeeAlso: AX=EB05h,INT 31/AX=0801h
  6002. --------E-21EB04-----------------------------
  6003. INT 21 - OS/386 VMM - GET A PAGE TABLE ENTRY BY 32-BIT SEGMENT:OFFSET
  6004.     AX = EB04h
  6005.     ???
  6006. Return: ???
  6007. Note:    protected mode only???
  6008. SeeAlso: AX=EB00h,AX=EB02h
  6009. --------E-21EB05-----------------------------
  6010. INT 21 - OS/386 VMM - MAP PAGES
  6011.     AX = EB05h
  6012.     ???
  6013. Return: ???
  6014. Note:    protected mode only???
  6015. SeeAlso: AX=EB03h,INT 31/AX=0800h
  6016. --------E-21EB06-----------------------------
  6017. INT 21 - OS/386 VMM - LOCK PAGES IN MEMORY
  6018.     AX = EB06h
  6019.     ???
  6020. Return: ???
  6021. Note:    protected mode only???
  6022. SeeAlso: AX=EB07h,INT 31/AX=0600h
  6023. --------E-21EB07-----------------------------
  6024. INT 21 - OS/386 VMM - UNLOCK MEMORY PAGES
  6025.     AX = EB07h
  6026.     ???
  6027. Return: ???
  6028. Note:    protected mode only???
  6029. SeeAlso: AX=EB06h,INT 31/AX=0601h
  6030. --------N-21EC-------------------------------
  6031. INT 21 - Novell NetWare - SYNCHRONIZATION SERVICES - RELEASE FILE
  6032.     AH = ECh
  6033.     DS:DX -> ASCIZ filename
  6034. Return: AL = status
  6035.         00h successful
  6036.         FFh file not found
  6037. Desc:    unlock the specified file but retain it in the log table
  6038. Note:    this function is supported by NetWare 4.6+, Advanced NetWare 1.0+, and
  6039.       Alloy NTNX
  6040. SeeAlso: AH=CDh,AH=EBh"NetWare",AH=EDh"NetWare"
  6041. --------T-21EC-------------------------------
  6042. INT 21 - DoubleDOS - GET VIRTUAL SCREEN ADDRESS
  6043.     AH = ECh
  6044. Return: ES = segment of virtual screen
  6045. Desc:    determine the address of the virtual screen to which the program
  6046.       should write instead of the actual video memory, so that the
  6047.       multitasked programs do not interfere with each other's output
  6048. Notes:    screen address can change if task-switching is on!!
  6049.     identical to AH=FCh
  6050. SeeAlso: INT 10/AH=FEh,AH=FCh"DoubleDOS",INT FC"DoubleDOS"
  6051. --------E-21EC-------------------------------
  6052. INT 21 - OS/286, OS/386 - BLOCK TRANSFER
  6053.     AH = ECh
  6054.     ???
  6055. Return: ???
  6056. --------v-21EC59-----------------------------
  6057. INT 21 - VIRUS - "Terror" - INSTALLATION CHECK
  6058.     AX = EC59h
  6059. Return: BP = EC59h if resident
  6060. SeeAlso: AH=E7h"VIRUS",AH=EEh"VIRUS"
  6061. --------N-21ED-------------------------------
  6062. INT 21 - Novell NetWare - SYNCHRONIZATION SERVICES - CLEAR FILE
  6063.     AH = EDh
  6064.     DS:DX -> ASCIZ filename
  6065. Return: AL = status
  6066.         00h successful
  6067.         FFh no files found
  6068. Desc:    unlock the file and remove it from the log table
  6069. Note:    this function is supported by NetWare 4.6+, Advanced NetWare 1.0+, and
  6070.       Alloy NTNX
  6071. SeeAlso: AH=CBh"NetWare",AH=CEh,AH=CFh,AH=EBh"NetWare",AH=ECh"NetWare"
  6072. --------E-21ED-------------------------------
  6073. INT 21 - OS/286, OS/386 - GET SEGMENT OR WINDOW DESCRIPTOR
  6074.     AH = EDh
  6075.     ???
  6076. Return: ???
  6077. Note:    protected mode only???
  6078. SeeAlso: AH=E9h"OS/286"
  6079. --------N-21EE-------------------------------
  6080. INT 21 - Novell NetWare - CONNECTION SERVICES - GET PHYSICAL STATION ADDRESS
  6081.     AH = EEh
  6082. Return: CX:BX:AX = six-byte physical address
  6083. Note:    this function is supported by NetWare 4.6+, Advanced NetWare 1.0+, and
  6084.       Alloy NTNX
  6085. SeeAlso: AH=E3h/SF=13h
  6086. --------T-21EE-------------------------------
  6087. INT 21 - DoubleDOS - GIVE AWAY TIME TO OTHER TASKS
  6088.     AH = EEh
  6089.     AL = number of 55ms time slices to give away
  6090. Return: returns after giving away time slices
  6091. SeeAlso: AH=FEh"DoubleDOS",INT FE"DoubleDOS"
  6092. --------v-21EE-------------------------------
  6093. INT 21 - VIRUS - "Jerusalem-G", "Pregnant" - INSTALLATION CHECK
  6094.     AH = EEh
  6095. Return: AX = 0300h if "Jerusalem-G" resident
  6096.     AL = 05h if "Pregnant" resident
  6097. SeeAlso: AH=DDh"VIRUS",AX=EC59h,AH=F0h"VIRUS"
  6098. --------N-21EF00-----------------------------
  6099. INT 21 - Novell NetWare - WORKSTATION - GET DRIVE HANDLE TABLE
  6100.     AX = EF00h
  6101. Return: ES:SI -> network shell's 32-byte drive handle table
  6102.     AX = 0000h
  6103. Notes:    this function is supported by Advanced NetWare 1.0+
  6104.     each byte in the drive handle table contains the directory handle for
  6105.       the corresponding drive, or 00h if not mapped to a directory
  6106. SeeAlso: AX=EF01h,AX=EF02h,AX=EF03h,AX=EF04h
  6107. --------N-21EF01-----------------------------
  6108. INT 21 - Novell NetWare - WORKSTATION - GET DRIVE FLAG TABLE
  6109.     AX = EF01h
  6110. Return: ES:SI -> network shell's 32-byte drive flag table (see below)
  6111.     AX = 0000h
  6112. Notes:    this function is supported by Advanced NetWare 1.0+
  6113.     each byte in the drive flag table corresponds to a drive
  6114. SeeAlso: AX=EF00h,AX=EF02h,AX=EF03h
  6115.  
  6116. Values in drive flag table:
  6117.  00h    drive is not mapped
  6118.  01h    permanent network drive
  6119.  02h    temporary network drive
  6120.  80h    mapped to local drive
  6121.  81h    local drive used as permanent network drive
  6122.  82h    local drive used as temporary network drive
  6123. --------N-21EF02-----------------------------
  6124. INT 21 - Novell NetWare - WORKSTATION - GET DRIVE CONNECTION ID TABLE
  6125.     AX = EF02h
  6126. Return: ES:SI -> network shell's 32-byte drive conection ID table
  6127.     AX = 0000h
  6128. Notes:    this function is supported by Advanced NetWare 1.0+
  6129.     each byte in the connection ID table corresponds to a drive and
  6130.       contains either the connection ID (1-8) of the server for that drive
  6131.       or 00h if the drive is not mapped to a file server
  6132. SeeAlso: AX=EF01h,AX=EF03h,AX=F002h
  6133. --------N-21EF03-----------------------------
  6134. INT 21 - Novell NetWare - WORKSTATION - GET CONNECTION ID TABLE
  6135.     AX = EF03h
  6136. Return: ES:SI -> network shell's connection ID table (see below)
  6137.     AX = 0000h
  6138. Note:    this function is supported by Advanced NetWare 1.0+
  6139. SeeAlso: AX=EF00h,AX=EF02h,AX=EF04h,AX=F002h
  6140.  
  6141. Format of connection ID table [one entry of eight-element array]:
  6142. Offset    Size    Description
  6143.  00h    BYTE    in use flag
  6144.         E0h AES temporary
  6145.         F8h IPX in critical section
  6146.         FAh processing
  6147.         FBh holding
  6148.         FCh AES waiting
  6149.         FDh waiting
  6150.         FEh receiving
  6151.         FFh sending
  6152.  01h    BYTE    order number assigned to server (1-8)
  6153.  02h    DWORD    (big-endian) file server's network address
  6154.  06h  6 BYTEs    (big-endian) file server's node address
  6155.  0Ch    WORD    (big-endian) socket number
  6156.  0Eh    WORD    (big-endian) base receive timeout in clock ticks
  6157.  10h  6 BYTEs    (big-endian) preferred routing node
  6158.  16h    BYTE    packet sequence number
  6159.  17h    BYTE    connection number (FFh = no connection)
  6160.  18h    BYTE    connection status (00h if active)
  6161.  19h    WORD    (big-endian) maximum receive timeout in clock ticks
  6162.  1Bh  5 BYTEs    reserved
  6163. --------N-21EF04-----------------------------
  6164. INT 21 - Novell NetWare - WORKSTATION - GET FILE SERVER NAME TABLE
  6165.     AX = EF04h
  6166. Return: ES:SI -> network shell's file server name table (see below)
  6167.     AX = 0000h
  6168. Notes:    this function is supported by Advanced NetWare 1.0+
  6169.     the name table consists of eight 48-byte entries, each consisting of
  6170.       an ASCIZ server name for the corresponding entry in the connection
  6171.       ID table
  6172. SeeAlso: AX=EF03h
  6173. --------T-21F0-------------------------------
  6174. INT 21 - DoubleDOS - MENU CONTROL
  6175.     AH = F0h
  6176.     AL = subfunction
  6177.         01h exchange tasks
  6178.         73h resume invisible job if suspended
  6179.         74h kill other job
  6180.         75h suspend invisible job
  6181. Note:    identical to AH=E0h
  6182. SeeAlso: AH=E0h"DoubleDOS"
  6183. --------v-21F0-------------------------------
  6184. INT 21 - VIRUS - "Frere Jacques" - INSTALLATION CHECK
  6185.     AH = F0h
  6186. Return: AX = 0300h if resident
  6187. SeeAlso: AH=EEh"VIRUS",AH=F1h"VIRUS"
  6188. --------N-21F000-----------------------------
  6189. INT 21 - Novell NetWare - WORKSTATION - SET PREFERRED CONNECTION ID
  6190.     AX = F000h
  6191.     DL = connection ID of prefered file server (1-8) or 00h for none
  6192. Notes:    this function is supported by Advanced NetWare 1.0+
  6193.     the preferred connection ID is set to 00h by the shell on EOJ
  6194. SeeAlso: AH=D6h,AX=EF03h,AX=F001h,AX=F002h,AX=F005h
  6195. --------N-21F001-----------------------------
  6196. INT 21 - Novell NetWare - WORKSTATION - GET PREFERRED CONNECTION ID
  6197.     AX = F001h
  6198. Return: AL = connection ID of preferred file server (1-8), 00h if not set
  6199. Notes:    this function is supported by Advanced NetWare 1.0+
  6200.     the preferred connection ID is set to 00h by the shell on EOJ
  6201. SeeAlso: AH=D6h,AX=EF03h,AX=F000h,AX=F002h,AX=F005h
  6202. --------N-21F002-----------------------------
  6203. INT 21 - Novell NetWare - WORKSTATION - GET DEFAULT CONNECTION ID
  6204.     AX = F002h
  6205. Return: AL = connection ID of current default file server (1-8) (see AX=EF03h)
  6206. Note:    this function is supported by Advanced NetWare 1.0+
  6207. SeeAlso: AX=EF03h,AX=F000h,AX=F004h
  6208. --------N-21F003-----------------------------
  6209. INT 21 - Novell NetWare - PRINT SERVICES - GET LPT CAPTURE STATUS
  6210.     AX = F003h
  6211. Return: AH = status
  6212.         00h not active
  6213.         FFh active
  6214.         AL = connection ID (01h-08h)
  6215. Note:    this function is supported by Advanced NetWare 1.0+
  6216. SeeAlso: AX=B800h,AX=B804h,AH=DFh/DL=00h,AH=DFh/DL=04h
  6217. --------N-21F004-----------------------------
  6218. INT 21 - Novell NetWare - WORKSTATION - SET PRIMARY CONNECTION ID
  6219.     AX = F004h
  6220.     DL = connection ID of primary file server (1-8) or 00h for none
  6221. Note:    this function is supported by Advanced NetWare 2.0+
  6222. SeeAlso: AH=D6h,AX=EF03h,AX=F000h,AX=F002h,AX=F005h
  6223. --------N-21F005-----------------------------
  6224. INT 21 - Novell NetWare - WORKSTATION - GET PRIMARY CONNECTION ID
  6225.     AX = F005h
  6226. Return: AL = connection ID of primary file server (1-8), 00h if not set
  6227. Notes:    this function is supported by Advanced NetWare 2.0+
  6228.     by default, the primary file server is the one from which the login
  6229.       script executed; it is set to 00h if the workstation is not logged in
  6230.       and when it detaches from its primary file server
  6231. SeeAlso: AH=D6h,AX=EF03h,AX=F000h,AX=F002h,AX=F004h
  6232. --------N-21F1-------------------------------
  6233. INT 21 - Novell NetWare - CONNECTION SERVICES - FILE SERVER CONNECTION
  6234.     AH = F1h
  6235.     AL = subfunction
  6236.         00h attach to file server
  6237.         DL = preferred file server (01h-08h)
  6238.         01h detach from file server
  6239.         DL = connection ID
  6240.         02h logout from file server
  6241.         DL = connection ID
  6242. Return: AL = status
  6243.         00h successful
  6244.         F8h already attached to server
  6245.         F9h connection table full
  6246.         FAh no more server slots
  6247.         FCh unknown file server
  6248.         FEh server bindery locked
  6249.         FFh no response from server, or connection does not exist
  6250. Note:    these functions are supported by Advanced NetWare 1.0+
  6251. SeeAlso: AH=D7h"NetWare",AH=E3h/SF=14h
  6252. --------T-21F1-------------------------------
  6253. INT 21 - DoubleDOS - CLEAR KEYBOARD BUFFER FOR CURRENT JOB
  6254.     AH = F1h
  6255. SeeAlso: AH=E1h"DoubleDOS",AH=F2h"DoubleDOS",AH=F3h"DoubleDOS"
  6256. SeeAlso: AH=F8h"DoubleDOS"
  6257. --------v-21F1-------------------------------
  6258. INT 21 - VIRUS - "F1-337" - ???
  6259.     AH = F1h
  6260.     ???
  6261. Return: ???
  6262. SeeAlso: AH=F0h"VIRUS",AX=F1E9h
  6263. --------v-21F1E9-----------------------------
  6264. INT 21 - VIRUS - "Tremor" - INSTALLATION CHECK
  6265.     AX = F1E9h
  6266. Return: AX = installation state
  6267.         CADEh installed, and calling program is infected
  6268.         F100h not installed (normal DOS return value)
  6269.         else  installed, but calling program is not infected
  6270. SeeAlso: AH=F1h"VIRUS",AX=F2AAh
  6271. --------N-21F2-------------------------------
  6272. INT 21 u - Novell NetWare v3.01+ shell interface - MULTIPLEXOR
  6273.     AH = F2h
  6274.     AL = function
  6275.         15h broadcast services (see AH=E1h"NetWare")
  6276.         16h file/directory services (see AH=E2h"NetWare")
  6277.         17h connection control (see AH=E3h"NetWare")
  6278.     CX = length of request buffer in bytes
  6279.     DX = length of reply buffer in bytes
  6280.     DS:SI -> request buffer (contents vary by function)
  6281.     ES:DI -> reply buffer (contents vary by function)
  6282. Return: AL = status
  6283.     reply buffer filled as appropriate for function
  6284. Note:    this is a multiplexor providing a "raw" interface to the underlying
  6285.       Netware Core Protocol.  Many functions which were accessed via a
  6286.       separate AH function in older versions can also be accessed here
  6287.       (the function number in AL is added to CCh to get the old function
  6288.       number which is desired), but some NetWare 3.x calls appear to be
  6289.       available only here.
  6290. SeeAlso: AX=F244h
  6291. --------T-21F2-------------------------------
  6292. INT 21 - DoubleDOS - SEND CHARACTER TO KEYBOARD BUFFER OF OTHER JOB
  6293.     AH = F2h
  6294.     AL = character
  6295. Return: AL = 00h successful
  6296.          01h buffer full (128 characters)
  6297. SeeAlso: AH=E2h"DoubleDOS",AH=F1h"DoubleDOS",AH=F3h"DoubleDOS"
  6298. SeeAlso: AH=F8h"DoubleDOS"
  6299. --------N-21F244-----------------------------
  6300. INT 21 - Novell NetWare - FILE SERVICES - ERASE FILES
  6301.     AX = F244h
  6302.     DS:SI -> request buffer (see below)
  6303.     ES:DI -> reply buffer (ignored???)
  6304. Return: AL = status
  6305.         00h successful
  6306.         98h nonexistent volume
  6307.         9Bh invaid directory handle
  6308.         9Ch invalid path
  6309.         FFh no files found
  6310. Note:    this function only marks the file for deletion; use AH=E2h/SF=CEh to
  6311.       actually delete all marked files
  6312. SeeAlso: AH=13h,AH=41h,AH=E2h/SF=0Bh,AH=E3h/SF=CEh
  6313.  
  6314. Format of request buffer:
  6315. Offset    Size    Description
  6316.  00h    BYTE    directory handle
  6317.  01h    BYTE    search attributes (see AX=4301h)
  6318.  02h    BYTE    length of filespec
  6319.  03h  N BYTEs    ASCIZ filespec (may include wildcards)
  6320. --------v-21F2AA-----------------------------
  6321. INT 21 - VIRUS - "PcVrsDs" - INSTALLATION CHECK
  6322.     AX = F2AAh
  6323. Return: AH = AAh if resident
  6324. SeeAlso: AH=F1h"VIRUS",AH=F3h"VIRUS"
  6325. --------N-21F3-------------------------------
  6326. INT 21 - Novell NetWare - FILE SERVICES - FILE SERVER FILE COPY
  6327.     AH = F3h
  6328.     ES:DI -> request buffer (see below)
  6329. Return: AL = status/error code
  6330.     CX:DX = number of bytes copied
  6331. Notes:    this function is supported by Advanced NetWare 2.0+
  6332.     both source and destination must be on the same file server
  6333. SeeAlso: AH=3Ch,AH=3Fh
  6334.  
  6335. Format of request buffer:
  6336. Offset    Size    Description
  6337.  00h    WORD    source file handle (as returned by AH=3Ch or AH=3Dh)
  6338.  02h    WORD    destination file handle
  6339.  04h    DWORD    starting offset in source
  6340.  08h    DWORD    starting offset in destination
  6341.  0Ch    DWORD    number of bytes to copy
  6342. --------T-21F3-------------------------------
  6343. INT 21 - DoubleDOS - ADD CHARACTER TO KEYBOARD BUFFER OF CURRENT JOB
  6344.     AH = F3h
  6345.     AL = character
  6346. Return: AL = 00h successful
  6347.          01h buffer full (128 characters)
  6348. SeeAlso: AH=E3h"DoubleDOS",AH=F1h"DoubleDOS",AH=F2h"DoubleDOS"
  6349. SeeAlso: AH=F8h"DoubleDOS"
  6350. --------v-21F3-------------------------------
  6351. INT 21 - VIRUS - "Carfield" - INSTALLATION CHECK
  6352.     AH = F3h
  6353. Return: AX = 0400h if resident
  6354. SeeAlso: AH=D5h"Carfield",AX=F2AAh,AH=F7h"VIRUS"
  6355. --------T-21F400-----------------------------
  6356. INT 21 - DoubleDOS - INSTALLATION CHECK/PROGRAM STATUS
  6357.     AX = F400h
  6358. Return: AL = 00h if DoubleDOS not present
  6359.        = 01h if running in visible DoubleDOS partition
  6360.        = 02h if running in the invisible DoubleDOS partition
  6361. SeeAlso: AX=E400h,AH=F5h"DoubleDOS"
  6362. --------T-21F5-------------------------------
  6363. INT 21 - DoubleDOS - OTHER PROGRAM STATUS
  6364.     AH = F5h
  6365. Return: AL = 00h no program in other partition
  6366.        = 01h program in other partition is running
  6367.        = 02h program in other partition is suspended
  6368. SeeAlso: AH=E5h"DoubleDOS",AX=F400h"DoubleDOS"
  6369. --------v-21F7-------------------------------
  6370. INT 21 - VIRUS - "GP1" - INSTALLATION CHECK
  6371.     AH = F7h
  6372. Return: AX = 0300h if resident
  6373. SeeAlso: AH=F0h"VIRUS",AH=FBh"VIRUS"
  6374. --------D-21F8-------------------------------
  6375. INT 21 - DOS v2.11 - SET OEM INT 21 HANDLER
  6376.     AH = F8h
  6377.     DS:DX -> OEM INT 21 handler for functions F9h to FFh
  6378.          FFFFh:FFFFh disables OEM handler
  6379. Notes:    this function is supported by Toshiba T1000 ROM MS-DOS 2.11
  6380.     calls to AH=F9h through AH=FFH will return AL=00h if no handler set
  6381.     handler is called with all registers exactly as set by caller, and
  6382.       should exit with IRET
  6383. SeeAlso: AH=F9h"OEM"
  6384. --------T-21F8-------------------------------
  6385. INT 21 - DoubleDOS - SET/RESET KEYBOARD CONTROL FLAGS
  6386.     AH = F8h
  6387.     AL = 00h set flags for this program
  6388.        = 01h set flags for other program
  6389.     DX = keyboard control flags (see AH=E8h"DoubleDOS")
  6390. Return: DX = previous flags
  6391. Notes:    disabling Ctrl-PrtSc will allow the program to intercept the keystroke;
  6392.       disabling any of the other keystrokes disables them completely
  6393.     this function is identical to AH=E8h
  6394. SeeAlso: AH=E8h"DoubleDOS",AH=F1h"DoubleDOS",AH=F2h"DoubleDOS"
  6395. SeeAlso: AH=F3h"DoubleDOS"
  6396. --------D-21F9-------------------------------
  6397. INT 21 - DOS v2.11 - OEM FUNCTION
  6398.     AH = F9h
  6399. SeeAlso: AH=F8h"OEM",AH=FAh"OEM"
  6400. --------T-21F9-------------------------------
  6401. INT 21 - DoubleDOS - SET TIMESHARING PRIORITY
  6402.     AH = F9h
  6403.     AL = 00h visible program gets 70%, invisible gets 30% (default)
  6404.        = 01h visible program gets 50%, invisible gets 50%
  6405.        = 02h visible program gets 30%, invisible gets 70%
  6406.        = 03h Top program gets 70%, bottom program gets 30%
  6407.        = 04h Top program gets 30%, bottom program gets 70%
  6408.        = 05h get current priority
  6409.         Return: AL = priority setting
  6410. Note:    identical to AH=E9h
  6411. SeeAlso: AH=E9h"DoubleDOS",AH=FAh"DoubleDOS",AH=FBh"DoubleDOS"
  6412. --------D-21FA-------------------------------
  6413. INT 21 - DOS v2.11 - OEM FUNCTION
  6414.     AH = FAh
  6415. SeeAlso: AH=F8h"OEM",AH=F9h"OEM",AH=FBh"OEM"
  6416. --------T-21FA-------------------------------
  6417. INT 21 - DoubleDOS - TURN OFF TASK SWITCHING
  6418.     AH = FAh
  6419. Return: task switching turned off
  6420. SeeAlso: AH=EAh"DoubleDOS",AH=F9h"DoubleDOS",AH=FBh"DoubleDOS"
  6421. SeeAlso: INT FA"DoubleDOS"
  6422. --------v-21FA--DX5945-----------------------
  6423. INT 21 U - PC Tools v7+ VDEFEND, VSAFE, VWATCH - API
  6424.     AH = FAh
  6425.     DX = 5945h
  6426.     AL = function (00h-02h for VDEFEND, 00h-07h for VSAFE and VWATCH)
  6427. Return: varies by function
  6428. Note:    this API is identical to the API on INT 13/AH=FAh and INT 16/AH=FAh,
  6429.       so it is listed in its entirety only under INT 16/AX=FA00h and
  6430.       following
  6431. SeeAlso: INT 13/AX=FA00h,INT 16/AX=FA00h
  6432. --------D-21FB-------------------------------
  6433. INT 21 - DOS v2.11 - OEM FUNCTION
  6434.     AH = FBh
  6435. SeeAlso: AH=F8h"OEM",AH=FAh"OEM",AH=FCh"OEM"
  6436. --------T-21FB-------------------------------
  6437. INT 21 - DoubleDOS - TURN ON TASK SWITCHING
  6438.     AH = FBh
  6439. Return: task switching turned on
  6440. SeeAlso: AH=EBh"DoubleDOS",AH=F9h"DoubleDOS",AH=FAh"DoubleDOS"
  6441. SeeAlso: INT FB"DoubleDOS"
  6442. --------v-21FB-------------------------------
  6443. INT 21 - VIRUS - "Cinderella" - INSTALLATION CHECK
  6444.     AH = FBh
  6445. Return: AH = 00h if resident
  6446. SeeAlso: AH=F7h"VIRUS",AX=FB0Ah
  6447. --------v-21FB0A-----------------------------
  6448. INT 21 - VIRUS - "dBASE" - INSTALLATION CHECK
  6449.     AX = FB0Ah
  6450. Return: AX = 0AFBh if resident
  6451. SeeAlso: AH=FBh"VIRUS",AH=FCh"VIRUS"
  6452. --------D-21FC-------------------------------
  6453. INT 21 - DOS v2.11 - OEM FUNCTION
  6454.     AH = FCh
  6455. SeeAlso: AH=F8h"OEM",AH=FBh"OEM",AH=FDh"OEM"
  6456. --------T-21FC-------------------------------
  6457. INT 21 - DoubleDOS - GET VIRTUAL SCREEN ADDRESS
  6458.     AH = FCh
  6459. Return: ES = segment of virtual screen
  6460. Desc:    Determine the address of the virtual screen to which the program
  6461.       should write instead of the actual video memory, so that the
  6462.       multitasked programs do not interfere with each other's output.
  6463. Notes:    screen address can change if task-switching is on!!
  6464.     identical to AH=ECh
  6465. SeeAlso: AH=ECh"DoubleDOS",INT FC"DoubleDOS"
  6466. --------v-21FC-------------------------------
  6467. INT 21 - VIRUS - "Troi" - INSTALLATION CHECK
  6468.     AH = FCh
  6469. Return: AL = A5h if resident
  6470. SeeAlso: AH=FB0Ah"VIRUS",AH=FDh"VIRUS"
  6471. --------D-21FD-------------------------------
  6472. INT 21 - DOS v2.11 - OEM FUNCTION
  6473.     AH = FDh
  6474. SeeAlso: AH=F8h"OEM",AH=FCh"OEM",AH=FEh"DOS"
  6475. --------v-21FD-------------------------------
  6476. INT 21 - VIRUS - "Border" - INSTALLATION CHECK
  6477.     AH = FDh
  6478. Return: AH = 13h if resident
  6479. SeeAlso: AH=FCh"VIRUS",AH=FEh"VIRUS"
  6480. --------D-21FE-------------------------------
  6481. INT 21 - DOS v2.11 - OEM FUNCTION
  6482.     AH = FEh
  6483. SeeAlso: AH=F8h"OEM",AH=FDh"OEM",AH=FFh"OEM"
  6484. --------T-21FE-------------------------------
  6485. INT 21 - DoubleDOS - GIVE AWAY TIME TO OTHER TASKS
  6486.     AH = FEh
  6487.     AL = number of 55ms time slices to give away
  6488. Return: returns after giving away time slices
  6489. SeeAlso: AH=EEh"DoubleDOS",INT FE"DoubleDOS"
  6490. --------v-21FE-------------------------------
  6491. INT 21 - VIRUS - "483" - INSTALLATION CHECK
  6492.     AH = FEh
  6493. Return: AH = 00h if resident
  6494. SeeAlso: AH=FDh"VIRUS",AX=FE01h
  6495. --------v-21FE01-----------------------------
  6496. INT 21 - VIRUS - "Flip" - INSTALLATION CHECK
  6497.     AX = FE01h
  6498. Return: AX = 01FEh if resident
  6499. SeeAlso: AH=FEh"VIRUS",AX=FE02h
  6500. --------v-21FE02-----------------------------
  6501. INT 21 - VIRUS - "2468"/"Tequila" - INSTALLATION CHECK
  6502.     AX = FE02h
  6503. Return: AX = 01FDh if resident
  6504. SeeAlso: AX=FE01h,AX=FE03h,AX=FEDCh"VIRUS"
  6505. --------v-21FE03-----------------------------
  6506. INT 21 - VIRUS - "2468"/"Tequila" - DISPLAY VIRUS MESSAGE
  6507.     AX = FE03h
  6508. SeeAlso: AX=FE02h
  6509. --------d-21FEDC-----------------------------
  6510. INT 21 - PCMag PCMANAGE/DCOMPRES - INSTALLATION CHECK
  6511.     AX = FEDCh
  6512. Return: AX = CDEFh if installed
  6513. Program: the PCMANAGE/DCOMPRES combination from PC Magazine permits
  6514.       infrequently-used files to be compressed to save space and
  6515.       transparently expanded when accessed
  6516. SeeAlso: AH=DCh,INT 2D/AL=10h"dLite"
  6517. --------v-21FEDC-----------------------------
  6518. INT 21 - VIRUS - "Black Monday" - INSTALLATION CHECK
  6519.     AX = FEDCh
  6520. Return: AL = DCh if resident
  6521. SeeAlso: AX=FE02h,AH=FFh"VIRUS"
  6522. --------D-21FF-------------------------------
  6523. INT 21 - DOS v2.11 - OEM FUNCTION
  6524.     AH = FFh
  6525. SeeAlso: AH=F8h"OEM",AH=FEh"OEM"
  6526. --------K-21FF-------------------------------
  6527. INT 21 - CED (Command EDitor) - INSTALLABLE COMMANDS
  6528.     AH = FFH
  6529.     AL = subfunction
  6530.         00h add installable command
  6531.            BL = mode - bit 0 = 1 callable from DOS prompt
  6532.                bit 1 = 1 callable from application
  6533.            DS:SI -> CR-terminated command name
  6534.            ES:DI -> FAR routine entry point
  6535.         01h remove installable command
  6536.            DS:SI -> CR-terminated command name
  6537.         02h reserved, may be used to test for CED installation
  6538. Return: CF clear if successful
  6539.     CF set on error
  6540.         AX = 01h invalid function
  6541.          02h command not found (subfunction 01h only)
  6542.          08h insufficient memory (subfunction 00h only)
  6543.          0Eh bad data (subfunction 00h only)
  6544.     AH = FFh if CED not installed
  6545. Program: CED is a shareware DOS command-line enhancer by Christopher J. Dunford
  6546. SeeAlso: AX=0A00h
  6547. --------E-21FF-------------------------------
  6548. INT 21 - DJ GO32.EXE 80386+ DOS extender - DOS EXTENSIONS
  6549.     AH = FFh
  6550.     AL = function
  6551.         01h create file
  6552.         02h open file
  6553.         03h get file statistics
  6554.         04h get time of day
  6555.         05h set time of day
  6556.         06h stat
  6557.         07h system
  6558. Program: GO32.EXE is a DOS extender included as part of the 80386 port of the
  6559.       GNU C/C++ compiler by DJ Delorie and distributed as DJGPP
  6560. SeeAlso: INT 10/AH=FFh"GO32"
  6561. --------K-21FF-------------------------------
  6562. INT 21 - DOSED.COM - INSTALLATION CHECK
  6563.     AH = FFh
  6564.     DS:SI -> "DOSED"
  6565.     ES = 0000h
  6566. Return: ES:DI -> "DOSED" if installed
  6567. Program: DOSED is a free DOS commandline editor/history buffer by Sverre H.
  6568.       Huseby
  6569. --------N-21FF-------------------------------
  6570. INT 21 - Topware Network Operating System - ???
  6571.     AH = FFh
  6572.     ???
  6573. Return: ???
  6574. SeeAlso: INT 2F/AX=FF00h
  6575. --------v-21FF-------------------------------
  6576. INT 21 - VIRUS - "Sunday", "Tumen 0.5", "Hero" - INSTALLATION CHECK
  6577.     AH = FFh
  6578. Return: AH = 00h if "Tumen 0.5" or "Hero" resident
  6579.     AX = 0400h if "Sunday" resident
  6580. SeeAlso: AX=FEDCh"VIRUS",AX=FF0Fh
  6581. --------E-21FF-------------------------------
  6582. INT 21 UP - Rational Systems DOS/4GW - API
  6583.     AH = FFh
  6584.     DH = function (00h-17h) (see also separate entries below)
  6585.     DL = subfunction or argument
  6586. Return: CF clear if valid function number
  6587.         AX = status???
  6588.     CF set if invalid function
  6589. SeeAlso: INT 15/AX=BFDCh
  6590. --------E-21FF--DH02-------------------------
  6591. INT 21 UP - Rational Systems DOS/4GW - SET ???
  6592.     AH = FFh
  6593.     DH = 02h
  6594.     DL = ???
  6595. Return: CF clear
  6596. --------E-21FF--DH05-------------------------
  6597. INT 21 UP - Rational Systems DOS/4GW - ???
  6598.     AH = FFh
  6599.     DH = 05h
  6600.     BX = ???
  6601. Return: ???
  6602. --------E-21FF--DH06-------------------------
  6603. INT 21 UP - Rational Systems DOS/4GW - ???
  6604.     AH = FFh
  6605.     DH = 06h
  6606.     BX = ???
  6607. Return: ???
  6608. --------E-21FF--DH07-------------------------
  6609. INT 21 UP - Rational Systems DOS/4GW - ???
  6610.     AH = FFh
  6611.     DH = 07h
  6612.     BX = ???
  6613. Return: ???
  6614. --------E-21FF--DH08-------------------------
  6615. INT 21 UP - Rational Systems DOS/4GW - ???
  6616.     AH = FFh
  6617.     DH = 08h
  6618.     BX = ???
  6619.     CX = ???
  6620.     ES = ???
  6621. Return: ???
  6622. --------E-21FF--DH09-------------------------
  6623. INT 21 UP - Rational Systems DOS/4GW - GET ???
  6624.     AH = FFh
  6625.     DH = 09h
  6626. Return: ES:BX -> ???
  6627. --------E-21FF--DH0A-------------------------
  6628. INT 21 UP - Rational Systems DOS/4GW - ???
  6629.     AH = FFh
  6630.     DH = 0Ah
  6631.     AL = ???
  6632.     BX = ???
  6633.     CX = ???
  6634. Return: ES = ??? or 0000h
  6635. --------E-21FF--DH0B-------------------------
  6636. INT 21 UP - Rational Systems DOS/4GW - ???
  6637.     AH = FFh
  6638.     DH = 0Bh
  6639.     AL = ???
  6640.     BX = ???
  6641.     CX = ???
  6642. Return: ???
  6643. --------E-21FF--DH0C-------------------------
  6644. INT 21 UP - Rational Systems DOS/4GW - GET/SET ???
  6645.     AH = FFh
  6646.     DH = 0Ch
  6647.     DL = ??? (00h or 01h)
  6648. Return: CF clear if successful
  6649.         AL = previous value of ???
  6650.     CF set on error (DL out of range)
  6651.         AX = FFFFh
  6652. --------E-21FF--DH0D-------------------------
  6653. INT 21 UP - Rational Systems DOS/4GW - ???
  6654.     AH = FFh
  6655.     DH = 0Dh
  6656.     ???
  6657. Return: ???
  6658. --------E-21FF--DH0E-------------------------
  6659. INT 21 UP - Rational Systems DOS/4GW - ???
  6660.     AH = FFh
  6661.     DH = 0Eh
  6662. Return: DX:AX -> XBRK structure (see INT 15/AX=BF02h)
  6663.     BX = ???
  6664.     CX = ???
  6665. SeeAlso: INT 15/AX=BF02h
  6666. --------E-21FF--DH0F-------------------------
  6667. INT 21 UP - Rational Systems DOS/4GW - ???
  6668.     AH = FFh
  6669.     DH = 0Fh
  6670.     ???
  6671. Return: ???
  6672. --------E-21FF--DH10-------------------------
  6673. INT 21 UP - Rational Systems DOS/4GW - ???
  6674.     AH = FFh
  6675.     DH = 10h
  6676.     AL = ???
  6677.     BX = ???
  6678.     CX = ???
  6679.     DI = ???
  6680.     SI = ???
  6681. Return: ???
  6682. Note:    among other things, frees two memory blocks via INT 21/AH=49h
  6683. --------E-21FF--DH11-------------------------
  6684. INT 21 UP - Rational Systems DOS/4GW - NOP
  6685.     AH = FFh
  6686.     DH = 11h
  6687. --------E-21FF--DH12-------------------------
  6688. INT 21 UP - Rational Systems DOS/4GW - EXCHANGE ??? POINTERS
  6689.     AH = FFh
  6690.     DH = 12h
  6691.     DS:SI -> new ???
  6692.     ES:DI -> new ???
  6693. Return: DS:SI -> previous ???
  6694.     ES:DI -> previous ???
  6695. --------E-21FF--DH13-------------------------
  6696. INT 21 UP - Rational Systems DOS/4GW - ???
  6697.     AH = FFh
  6698.     DH = 13h
  6699.     AL = ???
  6700.     ES = ???
  6701. Return: ???
  6702. --------E-21FF--DH14-------------------------
  6703. INT 21 UP - Rational Systems DOS/4GW - ???
  6704.     AH = FFh
  6705.     DH = 14h
  6706.     BX = ???
  6707.     CX = ???
  6708. Return: CF clear
  6709.         AX = ???
  6710.         DX = ???
  6711. --------E-21FF--DH15-------------------------
  6712. INT 21 UP - Rational Systems DOS/4GW - GET ??? FUNCTIONS
  6713.     AH = FFh
  6714.     DH = 15h
  6715. Return: CF clear
  6716.         DX:AX -> FAR function for ???
  6717.         CX:BX -> FAR function for ???
  6718.         SI:DI -> FAR function for ???
  6719. --------E-21FF--DH16-------------------------
  6720. INT 21 UP - Rational Systems DOS/4GW - GET ???
  6721.     AH = FFh
  6722.     DH = 16h
  6723. Return: AX = ???
  6724. --------E-21FF--DH17-------------------------
  6725. INT 21 UP - Rational Systems DOS/4GW - ???
  6726.     AH = FFH
  6727.     DH = 17h
  6728.     AL = ???
  6729.     DL = ???
  6730. Return: ???
  6731. --------E-21FF00DX0078-----------------------
  6732. INT 21 - Rational Systems DOS/4G - INSTALLATION CHECK
  6733.     AX = FF00h
  6734.     DX = 0078h
  6735. Return: AL <> 00h if installed
  6736.         GS = segment of kernel if nonzero
  6737. SeeAlso: INT 15/AX=BF02h
  6738. --------v-21FF0F-----------------------------
  6739. INT 21 - FLU_SHOT+ v1.83 - INSTALLATION CHECK
  6740.     AX = FF0Fh
  6741. Return: AX = 0101h if resident
  6742. Program: FLU_SHOT+ is an antivirus/antitrojan program by Ross M. Greenberg and
  6743.       Software Concepts Design
  6744. Note:    the "PSQR/1720" virus calls this function to determine whether
  6745.       FLU_SHOT+ is present
  6746. SeeAlso: AH=FFh"VIRUS",AX=FF10h
  6747. --------v-21FF10-----------------------------
  6748. INT 21 - VIRUS - "Twins" - INSTALLATION CHECK
  6749.     AX = FF10h
  6750. Return: AL = 07h if resident
  6751. SeeAlso: AX=FF0Fh,AX=FFFEh
  6752. --------v-21FFFE-----------------------------
  6753. INT 21 - VIRUS - "08/15"/"Many Fingers" - INSTALLATION CHECK
  6754.     AX = FFFEh
  6755. Return: AX = 0815h if resident
  6756. SeeAlso: AX=FF10h,AX=FFFFh
  6757. --------v-21FFFF-----------------------------
  6758. INT 21 - VIRUS - "Ontario", "Year 1992"/"B1M92" - INSTALLATION CHECK
  6759.     AX = FFFFh
  6760. Return: AX = 0000h if "Ontario" resident
  6761.     AX = 1992h if "Year 1992"/"B1M92" resident
  6762. SeeAlso: AX=FF0Fh,AX=FFFFh/CX=0000h,INT 6B"VIRUS"
  6763. --------v-21FFFFCX0000-----------------------
  6764. INT 21 - VIRUS - "Revenge" - INSTALLATION CHECK
  6765.     AX = FFFFh
  6766.     CX = 0000h
  6767. Return: CX = 0006h if resident
  6768. SeeAlso: AX=FFFFh,INT 6B"VIRUS"
  6769. ---------------------------------------------
  6770.